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
216 B
SQL
7 lines
216 B
SQL
CREATE TABLE [revisions] (
|
|
[reviseID] int not null IDENTITY,
|
|
[content] nvarchar (MAX) not null,
|
|
[contentID] int not null,
|
|
[contentType] nvarchar (100) DEFAULT 'replies' not null,
|
|
[createdAt] datetime not null
|
|
); |