AppFlowy/frontend/rust-lib/flowy-database/migrations/2022-08-15-020544_grid-view/up.sql

12 lines
309 B
MySQL
Raw Normal View History

2022-08-15 02:08:05 +00:00
-- Your SQL goes here
2022-08-15 12:07:01 +00:00
CREATE TABLE grid_view_rev_table (
2022-08-15 02:08:05 +00:00
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
object_id TEXT NOT NULL DEFAULT '',
base_rev_id BIGINT NOT NULL DEFAULT 0,
rev_id BIGINT NOT NULL DEFAULT 0,
data BLOB NOT NULL DEFAULT (x''),
state INTEGER NOT NULL DEFAULT 0
);