mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-04-25 15:17:28 -04:00
feat: save snapshot to sqlite db (#2718)
* chore: snapshot * chore: impl sqlite snapshot * feat: snapshot config * feat: update patch * ci: fix tauri ci * ci: add cache path * chore: save snapshot * chore: update patch * ci: fix s fmt
This commit is contained in:
parent
f2dd58a4f1
commit
bf121623ae
20 changed files with 323 additions and 98 deletions
|
@ -1,5 +1,15 @@
|
|||
// @generated automatically by Diesel CLI.
|
||||
|
||||
diesel::table! {
|
||||
collab_snapshot (id) {
|
||||
id -> Text,
|
||||
object_id -> Text,
|
||||
desc -> Text,
|
||||
timestamp -> BigInt,
|
||||
data -> Binary,
|
||||
}
|
||||
}
|
||||
|
||||
diesel::table! {
|
||||
user_table (id) {
|
||||
id -> Text,
|
||||
|
@ -11,3 +21,5 @@ diesel::table! {
|
|||
email -> Text,
|
||||
}
|
||||
}
|
||||
|
||||
diesel::allow_tables_to_appear_in_same_query!(collab_snapshot, user_table,);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue