rust_forum/migrations/20241204130431_create_post_table.up.sql

6 lines
203 B
MySQL
Raw Normal View History

2024-12-04 23:17:19 +03:00
-- Add up migration script here
CREATE TABLE "post"(
creation_time TIMESTAMPTZ PRIMARY KEY UNIQUE NOT NULL,
poster_id BIGSERIAL NOT NULL REFERENCES "user"(id),
post VARCHAR NOT NULL UNIQUE
);