Catalogger.NET/Catalogger.Backend/Database/setup_migrations.sql

4 lines
136 B
SQL

create table if not exists migrations (
migration_name text primary key,
applied_at timestamptz not null default (now())
);