rust_forum/migrations/20241213115604_permission.up.sql

5 lines
159 B
MySQL
Raw Normal View History

2024-12-13 16:59:34 +03:00
-- Add up migration script here
CREATE TABLE IF NOT EXISTS "permission"(
id BIGSERIAL PRIMARY KEY UNIQUE NOT NULL,
name VARCHAR(256) UNIQUE NOT NULL
2024-12-13 16:59:34 +03:00
);