fog/cmd/migrate/migrations/000002_create_posts.up.sql
2024-12-30 10:02:01 +00:00

10 lines
No EOL
301 B
SQL

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