github.com/Azareal/Gosora@v0.0.0-20210729070923-553e66b59003/schema/mssql/query_users_groups_promotions.sql (about) 1 CREATE TABLE [users_groups_promotions] ( 2 [pid] int not null IDENTITY, 3 [from_gid] int not null, 4 [to_gid] int not null, 5 [two_way] bit DEFAULT 0 not null, 6 [level] int not null, 7 [posts] int DEFAULT 0 not null, 8 [minTime] int not null, 9 [registeredFor] int DEFAULT 0 not null, 10 primary key([pid]) 11 );