2018-08-15 07:02:57 +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` timestamp not null,
|
|
|
|
`revert_at` timestamp not null,
|
|
|
|
`temporary` boolean not null,
|
|
|
|
primary key(`uid`)
|
2017-08-27 09:33:45 +00:00
|
|
|
);
|