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

     1  CREATE TABLE `pages`(
     2  	`pid` int not null AUTO_INCREMENT,
     3  	`name` varchar(200) not null,
     4  	`title` varchar(200) not null,
     5  	`body` text not null,
     6  	`allowedGroups` text not null,
     7  	`menuID` int DEFAULT -1 not null,
     8  	primary key(`pid`)
     9  ) CHARSET=utf8mb4 COLLATE utf8mb4_general_ci;