rust_forum/migrations/20241204225143_create_post_table.up.sql
2024-12-12 21:10:23 +03:00

6 lines
No EOL
231 B
SQL

-- Add up migration script here
CREATE TABLE IF NOT EXISTS "post"(
creation_time TIMESTAMPTZ PRIMARY KEY UNIQUE NOT NULL DEFAULT NOW(),
poster_id BIGSERIAL NOT NULL REFERENCES "user"(id),
post VARCHAR NOT NULL UNIQUE
);