summaryrefslogtreecommitdiff
path: root/models/participant_ext.js
diff options
context:
space:
mode:
Diffstat (limited to 'models/participant_ext.js')
-rw-r--r--models/participant_ext.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/models/participant_ext.js b/models/participant_ext.js
index 070eb93..abcb5ed 100644
--- a/models/participant_ext.js
+++ b/models/participant_ext.js
@@ -8,7 +8,7 @@ module.exports = function(sequelize, DataTypes) {
primaryKey: true,
autoIncrement: true
},
- patch_version: {
+ series: {
type: DataTypes.STRING(191),
allowNull: false
},
@@ -34,6 +34,9 @@ module.exports = function(sequelize, DataTypes) {
allowNull: true
}
}, {
- tableName: 'participant_ext'
+ tableName: 'participant_ext',
+ timestamps: false,
+ underscored: true,
+ freezeTableName: true
});
};