Files
admin/env/02 db-scripts/02_structure.sql
T
Alex Bezdieniezhnykh 2244edd2ed add docker, deploy
2024-11-14 16:12:06 +02:00

14 lines
374 B
SQL

-- users table
drop table users;
create table users
(
id uuid primary key,
email varchar(160) not null,
password_hash varchar(255) not null,
hardware_id varchar(120) null,
role varchar(20) not null
);
grant select, insert, update, delete on public.users to azaion_admin;
grant select on table public.users to azaion_reader;