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

5 lines
136 B
MySQL
Raw Permalink Normal View History

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