blob: 91eb3a162eebd1afcbf3a2b6f12b5838b149fcfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
drop table auth.registrations cascade;
create table auth.registrations (
id serial8 primary key,
hash bytea not null,
first_name character varying(255) not null,
last_name character varying(255) not null,
email character varying(255) not null,
role_groups text,
created timestamp without time zone not null default now()
);
|