mirror of
https://github.com/azaion/admin.git
synced 2026-04-22 11:46:33 +00:00
add docker, deploy
This commit is contained in:
Vendored
+13
@@ -0,0 +1,13 @@
|
||||
-- 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;
|
||||
|
||||
Reference in New Issue
Block a user