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

     1  CREATE TABLE "users_groups_promotions" (
     2  	`pid` serial not null,
     3  	`from_gid` int not null,
     4  	`to_gid` int not null,
     5  	`two_way` boolean 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  );