gosora/schema/pgsql/query_conversations_posts.sql
Azareal 4d8c97812d More conversations work.
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.
2019-08-14 20:39:04 +10:00

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`)
);