4d8c97812d
Add support for AS in columns for SimpleInnerJoin. Add a referrer policy to improve privacy a little. Shorten /static/ to /s/ since it comes up so much. Remove some obsolete code. Shorten some variable names. Reduce the amount of boilerplate in the patcher. Added the RefNoTrack and RefNoRef privacy config settings. You may need to run the updater / patcher for this commit.
8 lines
204 B
SQL
8 lines
204 B
SQL
CREATE TABLE "conversations_posts" (
|
|
`pid` serial not null,
|
|
`cid` int not null,
|
|
`createdBy` int not null,
|
|
`body` varchar (50) not null,
|
|
`post` varchar (50) DEFAULT '' not null,
|
|
primary key(`pid`)
|
|
); |