Skip to content

Instantly share code, notes, and snippets.

@amandeepmittal
Created December 3, 2018 04:35
Show Gist options
  • Save amandeepmittal/d5adc0f7ec6b958082313b07ab0647cd to your computer and use it in GitHub Desktop.
Save amandeepmittal/d5adc0f7ec6b958082313b07ab0647cd to your computer and use it in GitHub Desktop.
'use strict';
module.exports = (sequelize, DataTypes) => {
const Todo = sequelize.define(
'Todo',
{
title: DataTypes.STRING
},
{}
);
Todo.associate = function(models) {
// associations can be defined here
};
return Todo;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment