4 lines
136 B
SQL
4 lines
136 B
SQL
create table if not exists migrations (
|
|
migration_name text primary key,
|
|
applied_at timestamptz not null default (now())
|
|
);
|