cdb2f0711d
Changed the signature of AttachmentStore.Add Added the MoveTo method to AttachmentStore. Added the MoveToByExtra method to AttachmentStore. Don't forget to actually add the pre script for topic_c_edit_post x.x Added the extra column to the attachments table. You will need to run the updater / patcher for this commit.
11 lines
406 B
SQL
11 lines
406 B
SQL
CREATE TABLE `attachments` (
|
|
`attachID` int not null AUTO_INCREMENT,
|
|
`sectionID` int DEFAULT 0 not null,
|
|
`sectionTable` varchar(200) DEFAULT 'forums' not null,
|
|
`originID` int not null,
|
|
`originTable` varchar(200) DEFAULT 'replies' not null,
|
|
`uploadedBy` int not null,
|
|
`path` varchar(200) not null,
|
|
`extra` varchar(200) not null,
|
|
primary key(`attachID`)
|
|
) CHARSET=utf8mb4 COLLATE utf8mb4_general_ci; |