rust_forum/migrations/20241204225155_create_interaction_table.up.sql
2025-01-28 22:38:14 +03:00

5 lines
172 B
SQL

-- Add up migration script here
CREATE TABLE IF NOT EXISTS "interaction"(
interaction_id BIGSERIAL PRIMARY KEY NOT NULL UNIQUE,
name VARCHAR(32) UNIQUE NOT NULL
);