schema.rs 565 B

123456789101112131415161718192021222324252627
  1. // @generated automatically by Diesel CLI.
  2. diesel::table! {
  3. collab_snapshot (id) {
  4. id -> Text,
  5. object_id -> Text,
  6. title -> Text,
  7. desc -> Text,
  8. collab_type -> Text,
  9. timestamp -> BigInt,
  10. data -> Binary,
  11. }
  12. }
  13. diesel::table! {
  14. user_table (id) {
  15. id -> Text,
  16. name -> Text,
  17. workspace -> Text,
  18. icon_url -> Text,
  19. openai_key -> Text,
  20. token -> Text,
  21. email -> Text,
  22. }
  23. }
  24. diesel::allow_tables_to_appear_in_same_query!(collab_snapshot, user_table,);