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

8 lines
200 B
SQL

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