feat: initial commit
All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good
All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good
This commit is contained in:
5
migrations/sqlite/0000000_init.down.sql
Normal file
5
migrations/sqlite/0000000_init.down.sql
Normal file
@ -0,0 +1,5 @@
|
||||
DROP TABLE inbounds;
|
||||
|
||||
---
|
||||
|
||||
DROP TABLE outbounds;
|
15
migrations/sqlite/0000000_init.up.sql
Normal file
15
migrations/sqlite/0000000_init.up.sql
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
|
||||
CREATE TABLE inbounds (
|
||||
id TEXT PRIMARY KEY,
|
||||
created_at datetime NOT NULL,
|
||||
updated_at datetime NOT NULL
|
||||
);
|
||||
|
||||
---
|
||||
|
||||
CREATE TABLE outbounds (
|
||||
id TEXT PRIMARY KEY,
|
||||
created_at datetime NOT NULL,
|
||||
updated_at datetime NOT NULL
|
||||
);
|
Reference in New Issue
Block a user