Added userActions to sql scheme
parent
49bae90fc2
commit
63f84581fb
12
scheme.sql
12
scheme.sql
|
@ -59,3 +59,15 @@ CREATE TABLE `sessions` (
|
|||
`last_login` datetime NOT NULL,
|
||||
`expires` datetime NOT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `user_actions`
|
||||
--
|
||||
|
||||
CREATE TABLE `user_actions` (
|
||||
`id` char(16) NOT NULL,
|
||||
`user_id` char(32) NOT NULL,
|
||||
`expires` datetime NOT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
Loading…
Reference in New Issue