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 102B

1234567
  1. table! {
  2. gists (id) {
  3. id -> Int4,
  4. title -> Varchar,
  5. body -> Text,
  6. }
  7. }