mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-19 15:06:53 +00:00
9 lines
221 B
MySQL
9 lines
221 B
MySQL
![]() |
-- 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
|
||
|
);
|