The backend of a gist server written in Rust
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

schema.rs 216B

12345678910
  1. table! {
  2. gists (id) {
  3. id -> Int4,
  4. title -> Varchar,
  5. body -> Text,
  6. created_at -> Nullable<Timestamp>,
  7. filetype -> Nullable<Varchar>,
  8. formatted_body -> Text,
  9. }
  10. }