da6ae8d7d4
Fixed a bug with MemoryUserStore's length counter. The upsert API is currently a confusing mess, we'll have it all fixed up soon. Added the Delete method to the User struct. Improved the test coverage for the user subsystem.
10 lines
331 B
SQL
10 lines
331 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,
|
|
primary key([attachID])
|
|
); |