Skip to content

Instantly share code, notes, and snippets.

@thomasmartin-whoz
Last active October 6, 2022 15:13
Show Gist options
  • Save thomasmartin-whoz/a62087f33b98ed9ee6427534f98ce82b to your computer and use it in GitHub Desktop.
Save thomasmartin-whoz/a62087f33b98ed9ee6427534f98ce82b to your computer and use it in GitHub Desktop.
class Person {
ObjectId id
String firstName
String lastName
static constraints = {
firstName nullable: false, index: true
lastName nullable: false, index: true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment