Is it possible to have column names be underscored (postgres) but have the JavaScript getters be camelCase per language standards?
For anyone finding this later on it's now possible to explicitely define what the database field should be named:
var User = sequelize.define('user', { isAdmin: { type: DataTypes.BOOLEAN, field: 'is_admin' } });