SIP_GoldBees_Database/db_migrations/000_schema_migrations.sql
2026-02-01 14:14:57 +00:00

9 lines
143 B
PL/PgSQL

BEGIN;
CREATE TABLE IF NOT EXISTS schema_migrations (
version TEXT PRIMARY KEY,
applied_at TIMESTAMPTZ NOT NULL DEFAULT now()
);
COMMIT;