TTime/backend/internal/database/migrations/0050_user_roles.sql

9 lines
348 B
MySQL
Raw Normal View History

2024-02-26 00:12:13 +01:00
CREATE TABLE IF NOT EXISTS user_roles (
user_id INTEGER NOT NULL,
project_id INTEGER NOT NULL,
p_role TEXT NOT NULL, -- 'project_manager' or 'member'
2024-02-26 00:12:13 +01:00
FOREIGN KEY (user_id) REFERENCES users (id)
FOREIGN KEY (project_id) REFERENCES projects (id)
FOREIGN KEY (p_role) REFERENCES project_role (p_role)
2024-03-01 07:47:06 +01:00
PRIMARY KEY (user_id, project_id)
);