@speakr/speakr-module-services
Version:
SPEAKR Shared Service Module
20 lines (17 loc) • 333 B
JavaScript
/**
* Created by Lorenzo on 10/14/16.
*/
;
let _ = require('underscore');
module.exports = function(sequelize, DataTypes) {
return sequelize.define('campaign_profile_categories', {
id: {
type: DataTypes.INTEGER,
primaryKey: true
},
name: {
type: DataTypes.STRING
}
}, {
});
};