fog/cmd/migrate/migrations/000002_create_posts.up.sql

10 lines
301 B
MySQL
Raw Normal View History

2024-12-30 10:02:01 +00:00
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()
);