web/config/sql/se/FeedUsers.sql
2022-07-09 20:09:39 -05:00

7 lines
236 B
SQL

CREATE TABLE `FeedUsers` (
`UserId` int(10) unsigned NOT NULL,
`Created` datetime NOT NULL,
`Ended` datetime DEFAULT NULL,
`Notes` text DEFAULT NULL,
KEY `idxUserId` (`UserId`,`Ended`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;