rust_forum/migrations/20241213115604_permission.up.sql
2024-12-19 03:36:16 +03:00

5 lines
No EOL
159 B
SQL

-- Add up migration script here
CREATE TABLE IF NOT EXISTS "permission"(
id BIGSERIAL PRIMARY KEY UNIQUE NOT NULL,
name VARCHAR(256) UNIQUE NOT NULL
);