1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/hasura-rest/migrations/default/1634309496485_init/up.sql

8 lines
206 B
MySQL
Raw Normal View History

2021-10-16 02:12:59 +09:00
CREATE ROLE anonymous;
ALTER ROLE anonymous SET statement_timeout = '1s';
CREATE TABLE users (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
name TEXT
);
GRANT INSERT (name) ON users TO anonymous;