github.com/Azareal/Gosora@v0.0.0-20210729070923-553e66b59003/schema/mssql/query_users_groups_scheduler.sql (about)

     1  CREATE TABLE [users_groups_scheduler] (
     2  	[uid] int not null,
     3  	[set_group] int not null,
     4  	[issued_by] int not null,
     5  	[issued_at] datetime not null,
     6  	[revert_at] datetime not null,
     7  	[temporary] bit not null,
     8  	primary key([uid])
     9  );