schema.rs 807 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. auth_type -> Integer,
  23. }
  24. }
  25. diesel::table! {
  26. user_workspace_table (id) {
  27. id -> Text,
  28. name -> Text,
  29. uid -> BigInt,
  30. created_at -> BigInt,
  31. database_storage_id -> Text,
  32. }
  33. }
  34. diesel::allow_tables_to_appear_in_same_query!(collab_snapshot, user_table, user_workspace_table,);