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
355 B
SQL
11 lines
355 B
SQL
CREATE TABLE "attachments" (
|
|
`attachID` serial not null,
|
|
`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`)
|
|
); |