feat: ✨ routing routing
This commit is contained in:
parent
502334ea79
commit
511e05bd54
8 changed files with 192 additions and 0 deletions
2
migrations/20241223234406_routing.down.sql
Normal file
2
migrations/20241223234406_routing.down.sql
Normal file
|
@ -0,0 +1,2 @@
|
|||
-- Add down migration script here
|
||||
DROP TABLE IF EXISTS "routing";
|
5
migrations/20241223234406_routing.up.sql
Normal file
5
migrations/20241223234406_routing.up.sql
Normal file
|
@ -0,0 +1,5 @@
|
|||
-- Add up migration script here
|
||||
CREATE TABLE IF NOT EXISTS "routing"(
|
||||
id BIGSERIAL PRIMARY KEY UNIQUE NOT NULL,
|
||||
endpoint VARCHAR(255) UNIQUE NOT NULL
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue