rust_forum/migrations/20241204225155_create_interaction_table.up.sql

5 lines
159 B
MySQL
Raw Normal View History

2024-12-05 01:57:47 +03:00
-- Add up migration script here
CREATE TABLE IF NOT EXISTS "interaction"(
id BIGSERIAL PRIMARY KEY NOT NULL UNIQUE,
name VARCHAR(10) UNIQUE NOT NULL
);