convert editors table to roles table

pull/415/head
Christopher Usher 1 month ago committed by Mike Lang
parent 0f7b181be1
commit 4c4e1fa85f

@ -122,9 +122,11 @@ CREATE TABLE nodes (
backfill_from BOOLEAN NOT NULL DEFAULT TRUE
);
CREATE TABLE editors (
CREATE TABLE roles (
email TEXT PRIMARY KEY,
name TEXT NOT NULL
name TEXT NOT NULL,
editor BOOLEAN NOT NULL DEFAULT FALSE,
artist BOOLEAN NOT NULL DEFAULT FALSE
);
-- A slight misnomer, this is all rows of the tags sheet.

Loading…
Cancel
Save