2997135e80
Fixed two existence checks. Tweaked the profile CSS for Cosora. Added the TopicByReplyID function. Split off the profile logic from Reply into ProfileReply. Moved various hard-coded bits in the profile reply routes into ProfileReply. Moved four reply routes into /routes/reply.go Moved six topic routes into /routes/topic.go We should now capture more suspicious activity. Changed the definition of the revisions table.
7 lines
253 B
SQL
7 lines
253 B
SQL
CREATE TABLE `revisions` (
|
|
`reviseID` int not null AUTO_INCREMENT,
|
|
`content` text not null,
|
|
`contentID` int not null,
|
|
`contentType` varchar(100) DEFAULT 'replies' not null,
|
|
`createdAt` datetime not null
|
|
) CHARSET=utf8mb4 COLLATE utf8mb4_general_ci; |