]> git.pld-linux.org Git - packages/php-pecl-session_mysql.git/commitdiff
- database schema extraced from README
authorElan Ruusamäe <glen@pld-linux.org>
Mon, 12 Jun 2006 12:59:57 +0000 (12:59 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    php-pecl-session_mysql.sql -> 1.1

php-pecl-session_mysql.sql [new file with mode: 0644]

diff --git a/php-pecl-session_mysql.sql b/php-pecl-session_mysql.sql
new file mode 100644 (file)
index 0000000..f316e07
--- /dev/null
@@ -0,0 +1,13 @@
+create database phpsession;
+grant all privileges on phpsession.* to phpsession identified by "phpsession";
+use phpsession;
+create table phpsession (
+       sess_key char(64) not null,
+       sess_mtime int(10) unsigned not null,
+       sess_host char(64) not null,
+       sess_val mediumblob not null,
+
+       index i_key(sess_key(6)),
+       index i_mtime(sess_mtime),
+       index i_host(sess_host)
+);
This page took 0.044299 seconds and 4 git commands to generate.