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

     1  CREATE TABLE `revisions`(
     2  	`reviseID` int not null AUTO_INCREMENT,
     3  	`content` text not null,
     4  	`contentID` int not null,
     5  	`contentType` varchar(100) DEFAULT 'replies' not null,
     6  	`createdAt` datetime not null,
     7  	primary key(`reviseID`)
     8  ) CHARSET=utf8mb4 COLLATE utf8mb4_general_ci;