chore: add grid_view_table

This commit is contained in:
appflowy
2022-08-15 10:08:05 +08:00
parent 1ccdbaff9a
commit b15439fb70
4 changed files with 27 additions and 1 deletions

View File

@ -42,6 +42,17 @@ table! {
}
}
table! {
grid_view_table (id) {
id -> Integer,
object_id -> Text,
base_rev_id -> BigInt,
rev_id -> BigInt,
data -> Binary,
state -> Integer,
}
}
table! {
kv_table (key) {
key -> Text,
@ -125,6 +136,7 @@ allow_tables_to_appear_in_same_query!(
grid_block_index_table,
grid_meta_rev_table,
grid_rev_table,
grid_view_table,
kv_table,
rev_snapshot,
rev_table,