Files
DredgePos/sql.log
2022-07-06 14:28:55 +10:00

10 lines
224 B
Plaintext

create table if not exists migrations
(
id serial
constraint migrations_pk
primary key,
"name" varchar(100) not null,
"timestamp" int not null
);