8 lines
214 B
MySQL
8 lines
214 B
MySQL
|
CREATE TABLE api.contributors (
|
||
|
id uuid PRIMARY KEY DEFAULT gen_random_uuid(),
|
||
|
full_name TEXT NOT NULL,
|
||
|
link TEXT
|
||
|
);
|
||
|
GRANT all ON api.contributors TO automation;
|
||
|
GRANT SELECT ON api.contributors TO web_anon;
|