2024-03-08 07:33:31 +01:00
|
|
|
-- This table represents the possible role a user can have in a project.
|
|
|
|
-- It has nothing to do with the site admin table.
|
|
|
|
CREATE TABLE IF NOT EXISTS project_role (
|
|
|
|
p_role TEXT PRIMARY KEY
|
|
|
|
);
|
|
|
|
|
|
|
|
-- Insert the possible roles a user can have in a project.
|
2024-03-14 13:27:57 +01:00
|
|
|
INSERT OR IGNORE INTO project_role (p_role) VALUES ('project_manager');
|
2024-03-08 07:33:31 +01:00
|
|
|
INSERT OR IGNORE INTO project_role (p_role) VALUES ('member');
|