gosora/schema/pgsql/query_conversations_posts.sql
2022-02-21 03:16:15 +00:00

8 lines
222 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`)
);