feat: initial commit
All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good

This commit is contained in:
2023-04-24 20:52:12 +02:00
commit ac21629d28
90 changed files with 5730 additions and 0 deletions

View File

@ -0,0 +1,5 @@
DROP TABLE inbounds;
---
DROP TABLE outbounds;

View 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
);