mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
chore: config grid rev persistence
This commit is contained in:
@ -21,6 +21,17 @@ table! {
|
||||
}
|
||||
}
|
||||
|
||||
table! {
|
||||
grid_rev_table (id) {
|
||||
id -> Integer,
|
||||
object_id -> Text,
|
||||
base_rev_id -> BigInt,
|
||||
rev_id -> BigInt,
|
||||
data -> Binary,
|
||||
state -> Integer,
|
||||
}
|
||||
}
|
||||
|
||||
table! {
|
||||
kv_table (key) {
|
||||
key -> Text,
|
||||
@ -91,6 +102,7 @@ table! {
|
||||
allow_tables_to_appear_in_same_query!(
|
||||
app_table,
|
||||
doc_table,
|
||||
grid_rev_table,
|
||||
kv_table,
|
||||
rev_table,
|
||||
trash_table,
|
||||
|
Reference in New Issue
Block a user