MAPG-131 add sessions table to DB
This commit is contained in:
parent
6c8a3c6a90
commit
39e49724da
6
database/migrations/structure/20200613_1549_sessions.sql
Normal file
6
database/migrations/structure/20200613_1549_sessions.sql
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
CREATE TABLE `sessions` (
|
||||||
|
`id` varchar(64) NOT NULL,
|
||||||
|
`data` text NOT NULL,
|
||||||
|
`updated` timestamp NOT NULL,
|
||||||
|
PRIMARY KEY (`id`)
|
||||||
|
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4;
|
Loading…
Reference in New Issue
Block a user