femto-backend/Femto.Database/Migrations/20250518193113_AddUserRole.sql
2025-05-18 22:26:14 +02:00

9 lines
No EOL
198 B
SQL

-- Migration: AddUserRole
-- Created at: 18/05/2025 19:31:13
CREATE TABLE authn.user_role
(
user_id uuid REFERENCES authn.user_identity(id),
role int,
primary key (user_id, role)
);