Initial Sequelize integration.

Added orm module to abstract Sequelize usage to some degree. ORM module
handles the configuration and instantiation of Sequelize. Models are
defined and instantiated from models/*

Tested only against SQLite.

Faily new to nodejs so I probably messed up with something.
This commit is contained in:
DC*
2014-01-12 01:47:34 -03:00
parent 56ba4c6c61
commit 6faeab4b0b
5 changed files with 51 additions and 25 deletions
+7
View File
@@ -0,0 +1,7 @@
var Sequelize = require('sequelize');
module.exports = {
configure: function(db) {
return new Sequelize(db.name, db.user, db.password, db.options);
}
}