blob: 440afc7dd8e69cabdbb8dd74aedf006d4638385d (
plain)
1
2
3
4
5
6
7
8
9
|
-- Add migration script here
create table auth_user (
id uuid primary key,
email text unique not null,
avatar text,
description text,
updated_at text,
create_at timestamptz not null default now()
);
|