Updated typescript

This commit is contained in:
dredgy
2022-07-06 14:28:55 +10:00
parent 0a2ffa123a
commit b9a0b578e3
4 changed files with 896 additions and 19 deletions

10
sql.log Normal file
View File

@@ -0,0 +1,10 @@
create table if not exists migrations
(
id serial
constraint migrations_pk
primary key,
"name" varchar(100) not null,
"timestamp" int not null
);