Skip to content

Instantly share code, notes, and snippets.

@TheGP
Last active November 19, 2024 20:02
Show Gist options
  • Save TheGP/abcdd730a362aa010ff69c68675295d7 to your computer and use it in GitHub Desktop.
Save TheGP/abcdd730a362aa010ff69c68675295d7 to your computer and use it in GitHub Desktop.
#[derive(Debug, Deserialize, Serialize, ORM)]
#[orm(table = "cakes")]
struct Cake {
#[orm(primary_key)]
id2: Option<i32>,
name: String,
flavor: Option<String>,
#[orm(skip)]
test: Option<String>,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment