26 lines
513 B
Rust
Raw Normal View History

// @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,
name -> Text,
workspace -> Text,
2022-08-08 22:19:05 +08:00
icon_url -> Text,
openai_key -> Text,
token -> Text,
email -> Text,
}
}
diesel::allow_tables_to_appear_in_same_query!(collab_snapshot, user_table,);