Created
August 29, 2017 14:59
-
-
Save Abazhenov/7ede963797c162e52cecf0d8f268520b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const db = require('../_db'); | |
const Sequelize = require('sequelize'); | |
class tag_link extends Sequelize.Model { | |
} | |
tag_link.init({ | |
//fill in | |
},{ | |
sequelize: db, | |
tableName: 'tag_link', | |
}); | |
module.exports = tag_link |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment