10 lines
382 B
MySQL
10 lines
382 B
MySQL
|
-- 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 ('admin');
|
||
|
INSERT OR IGNORE INTO project_role (p_role) VALUES ('member');
|