2021-04-29 22:33:02 +00:00
|
|
|
CREATE TABLE `users_groups_scheduler`(
|
2022-02-21 03:16:15 +00:00
|
|
|
`uid` int not null,
|
|
|
|
`set_group` int not null,
|
|
|
|
`issued_by` int not null,
|
|
|
|
`issued_at` datetime not null,
|
|
|
|
`revert_at` datetime not null,
|
|
|
|
`temporary` boolean not null,
|
|
|
|
primary key(`uid`)
|
2017-08-27 09:33:45 +00:00
|
|
|
);
|