]> git.pld-linux.org Git - packages/php-pecl-session_mysql.git/blame - php-pecl-session_mysql.sql
- port in sample
[packages/php-pecl-session_mysql.git] / php-pecl-session_mysql.sql
CommitLineData
4f02ba63
ER
1/*
2
61d7d411
ER
3CREATE DATABASE phpsession;
4
5GRANT SELECT,UPDATE,INSERT,DELETE
6 ON phpsession.* TO 'phpsession'@'localhost' IDENTIFIED BY 'phpsession';
7
8USE PHPSESSION;
4f02ba63
ER
9*/
10
61d7d411 11CREATE TABLE phpsession (
6ea7df9b
ER
12 sess_key char(64) not null,
13 sess_mtime int(10) unsigned not null,
14 sess_host char(64) not null,
15 sess_val mediumblob not null,
16
17 index i_key(sess_key(6)),
18 index i_mtime(sess_mtime),
19 index i_host(sess_host)
20);
This page took 0.076827 seconds and 4 git commands to generate.