0305571cb3
Fixed the build tags for the alt database engines. Tweaked the quotes on the PgSQL adapter. Still not functional. Removed the SQLite build tag as it's unlikely that it'll ever be implemented.
8 lines
240 B
SQL
8 lines
240 B
SQL
CREATE TABLE "likes" (
|
|
`weight` tinyint DEFAULT 1 not null,
|
|
`targetItem` int not null,
|
|
`targetType` varchar (50) DEFAULT 'replies' not null,
|
|
`sentBy` int not null,
|
|
`createdAt` timestamp not null,
|
|
`recalc` tinyint DEFAULT 0 not null
|
|
); |