9 lines
392 B
SQL
9 lines
392 B
SQL
-- 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.
|
|
INSERT OR IGNORE INTO project_role (p_role) VALUES ('project_manager');
|
|
INSERT OR IGNORE INTO project_role (p_role) VALUES ('member');
|