mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
9 lines
221 B
SQL
9 lines
221 B
SQL
-- Add migration script here
|
|
CREATE TABLE user_table(
|
|
id uuid NOT NULL,
|
|
PRIMARY KEY (id),
|
|
email TEXT NOT NULL UNIQUE,
|
|
name TEXT NOT NULL,
|
|
create_time timestamptz NOT NULL,
|
|
password TEXT NOT NULL
|
|
); |