feat: routing routing

This commit is contained in:
Ahmet Kaan GÜMÜŞ 2024-12-23 03:00:52 +03:00
parent 502334ea79
commit 511e05bd54
8 changed files with 192 additions and 0 deletions

View file

@ -0,0 +1,2 @@
-- Add down migration script here
DROP TABLE IF EXISTS "routing";

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