rust_forum/migrations/20241204225155_create_interaction_table.up.sql

6 lines
172 B
MySQL
Raw Permalink Normal View History

2024-12-05 01:57:47 +03:00
-- Add up migration script here
CREATE TABLE IF NOT EXISTS "interaction"(
2025-01-28 22:38:14 +03:00
interaction_id BIGSERIAL PRIMARY KEY NOT NULL UNIQUE,
name VARCHAR(32) UNIQUE NOT NULL
2025-01-28 22:38:14 +03:00
);