AppFlowy/rust-lib/flowy-database/migrations/2021-07-22-234458_flowy-editor/up.sql

10 lines
314 B
MySQL
Raw Normal View History

2021-07-23 00:14:45 +00:00
-- Your SQL goes here
CREATE TABLE doc_table (
id TEXT NOT NULL PRIMARY KEY,
name TEXT NOT NULL DEFAULT '',
desc TEXT NOT NULL DEFAULT '',
path TEXT NOT NULL DEFAULT '',
modified_time BIGINT NOT NULL DEFAULT 0,
create_time BIGINT NOT NULL DEFAULT 0,
version BIGINT NOT NULL DEFAULT 0
);