fp/services/migrations-schema/migrations/00095_create-contributors.sql

8 lines
214 B
MySQL
Raw Normal View History

2024-11-05 19:48:21 +00:00
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;