Skip to content

Instantly share code, notes, and snippets.

@stephanbuys
Created August 1, 2017 09:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stephanbuys/ca823ec4b0df619ac6d884f76d6e5505 to your computer and use it in GitHub Desktop.
Save stephanbuys/ca823ec4b0df619ac6d884f76d6e5505 to your computer and use it in GitHub Desktop.
#[derive(PartialEq, Eq, Debug, Clone, Queryable, Identifiable, Insertable, AsChangeset, Associations)]
#[table_name = "users"]
pub struct User {
pub id: i32,
pub name: String,
pub hair_color: Option<String>,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment