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

     1  CREATE TABLE "pages" (
     2  	`pid` serial not null,
     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  );