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
365 B
SQL
11 lines
365 B
SQL
CREATE TABLE [attachments] (
|
|
[attachID] int not null IDENTITY,
|
|
[sectionID] int DEFAULT 0 not null,
|
|
[sectionTable] nvarchar (200) DEFAULT 'forums' not null,
|
|
[originID] int not null,
|
|
[originTable] nvarchar (200) DEFAULT 'replies' not null,
|
|
[uploadedBy] int not null,
|
|
[path] nvarchar (200) not null,
|
|
[extra] nvarchar (200) not null,
|
|
primary key([attachID])
|
|
); |