10 lines
301 B
MySQL
10 lines
301 B
MySQL
|
CREATE TABLE IF NOT EXISTS posts(
|
||
|
id bigserial PRIMARY KEY,
|
||
|
content text NOT NULL,
|
||
|
title text NOT NULL,
|
||
|
user_id bigserial NOT NULL,
|
||
|
tags text[],
|
||
|
reply_ids integer[],
|
||
|
created_at timestamp(0) with time zone NOT NULL DEFAULT NOW(),
|
||
|
updated_at timestamp(0) with time zone NOT NULL DEFAULT NOW()
|
||
|
);
|