9 lines
No EOL
198 B
SQL
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)
|
|
); |