Skip to content

Instantly share code, notes, and snippets.

@Imater
Created September 2, 2014 16:08
Show Gist options
  • Save Imater/2f29afde9fbe68d0433f to your computer and use it in GitHub Desktop.
Save Imater/2f29afde9fbe68d0433f to your computer and use it in GitHub Desktop.
model definition in sequelize
Sequelize = require 'sequelize'
sequelize = Sequelize.sequelize
sequelize.define 'article',
title:
type: Sequelize.STRING
html:
type: Sequelize.STRING
date:
type: Sequelize.DATE
active:
type: Sequelize.BOOLEAN
defaultValue: false
module.exports = sequelize.models
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment