diff --git a/scheme.sql b/scheme.sql index fe3348b..9f5f81d 100644 --- a/scheme.sql +++ b/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; \ No newline at end of file