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

8 lines
205 B
SQL

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