Skip to content

Instantly share code, notes, and snippets.

@JustinDFuller
Created July 21, 2019 00:48
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 JustinDFuller/981eda31e3081faef58e8e4f370084e1 to your computer and use it in GitHub Desktop.
Save JustinDFuller/981eda31e3081faef58e8e4f370084e1 to your computer and use it in GitHub Desktop.
Models
import orm from 'my_favorite_database_library'
export const models = {
user: orm.define({
id: orm.PRIMARY_KEY,
email: orm.STRING(255)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment