AppFlowy/backend/migrations/20210819065837_user.sql

9 lines
235 B
MySQL
Raw Normal View History

-- Add migration script here
2021-08-25 09:34:20 +00:00
CREATE TABLE IF NOT EXISTS 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
);