15 lines
444 B
SQL
15 lines
444 B
SQL
CREATE TABLE IF NOT EXISTS permissions (
|
|
id bigserial PRIMARY KEY,
|
|
code text NOT NULL
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS users_permissions (
|
|
user_id bigint NOT NULL REFERENCES users ON DELETE CASCADE,
|
|
permission_id bigint NOT NULL REFERENCES permissions ON DELETE CASCADE,
|
|
PRIMARY KEY (user_id, permission_id)
|
|
);
|
|
|
|
-- Add the two permissions to the table.
|
|
INSERT INTO permissions (code)
|
|
VALUES ('issues:read'), ('issues:write');
|