mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
9 lines
211 B
SQL
9 lines
211 B
SQL
-- Your SQL goes here
|
|
|
|
CREATE TABLE user_table (
|
|
id TEXT NOT NULL PRIMARY KEY,
|
|
name TEXT NOT NULL DEFAULT '',
|
|
password TEXT NOT NULL DEFAULT '',
|
|
email TEXT NOT NULL DEFAULT ''
|
|
);
|