Skip to content

Commit d134168

Browse files
committed
Commit setup.sql
setup.sql used for generating the required sessions table
1 parent 295a6bc commit d134168

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

install/setup.sql

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
CREATE TABLE `likel_sessions` (
2+
`id` char(128) NOT NULL DEFAULT '',
3+
`set_time` char(10) NOT NULL,
4+
`data` text NOT NULL,
5+
`session_key` char(128) NOT NULL,
6+
`iv` varchar(16) NOT NULL,
7+
PRIMARY KEY (`id`)
8+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

0 commit comments

Comments
 (0)