10 lines
224 B
Plaintext
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
|
|
);
|
|
|