gosora/schema/mysql/query_users_groups_scheduler.sql

9 lines
231 B
MySQL
Raw Normal View History

CREATE TABLE `users_groups_scheduler`(
`uid` int not null,
`set_group` int not null,
`issued_by` int not null,
2018-10-07 01:33:03 +00:00
`issued_at` datetime not null,
`revert_at` datetime not null,
`temporary` boolean not null,
primary key(`uid`)
);