persmgr/migrations/20250913111615_missions.up.sql
2025-09-13 15:52:49 +03:00

8 lines
199 B
SQL

CREATE TABLE IF NOT EXISTS missions (
id BIGSERIAL PRIMARY KEY NOT NULL,
name TEXT NOT NULL,
description TEXT NOT NULL,
created_at BIGINT NOT NULL,
modified_at BIGINT NOT NULL
);