WIP: reduce abstraction #6

Closed
coolaj86 wants to merge 7 commits from cleanup into kid-fix
1 changed files with 4 additions and 8 deletions
Showing only changes of commit 25013e7864 - Show all commits

View File

@ -124,14 +124,10 @@ you can do so like this:
var Sequelize = require('sequelize');
var databaseUrl = process.env['DATABASE_URL'];
var db = new Sequelize(databaseUrl, {
define: {
hooks: {
beforeDefine: function (name, attrs) {
console.log(name);
console.log(attrs);
attrs.tableName = 'MyPrefix' + attrs.tableName;
//attrs.schema = 'public';
}
hooks: {
beforeDefine: function (columns, model) {
model.tableName = 'MyPrefix' + model.name.plural;
//model.schema = 'public';
}
}
});