MAPG-131 add sessions table to DB

This commit is contained in:
Bence Pőcze 2020-06-13 20:38:45 +02:00
parent 6c8a3c6a90
commit 39e49724da

View 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;