femto-backend/Femto.Database/Migrations/20250518193113_AddUserRole.sql

9 lines
No EOL
197 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)
)