The backend of a gist server written in Rust
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

schema.rs 219B

12345678910
  1. table! {
  2. snippets (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. }