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

     1  CREATE TABLE `users_groups_promotions`(
     2  	`pid` int not null AUTO_INCREMENT,
     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  ) CHARSET=utf8mb4 COLLATE utf8mb4_general_ci;