rust_forum/migrations/20241223234406_routing.up.sql

5 lines
160 B
MySQL
Raw Normal View History

2024-12-23 03:00:52 +03:00
-- Add up migration script here
CREATE TABLE IF NOT EXISTS "routing"(
id BIGSERIAL PRIMARY KEY UNIQUE NOT NULL,
endpoint VARCHAR(255) UNIQUE NOT NULL
);