mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
8 lines
206 B
MySQL
8 lines
206 B
MySQL
|
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;
|