summaryrefslogtreecommitdiff
path: root/sql/types/auth.registrations_t.sql
blob: cde66d0d466efb99d06fea8f1478682a19f6c447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
drop type auth.registrations_t cascade;

create type auth.registrations_t as (
    id bigint,
    hash text,
    first_name character varying,
    last_name character varying,
    email character varying,
    role_groups text,
    created timestamp without time zone,
    valid_for interval
);