From c5cd9e53d7413ce960a2170eedb466073175bf80 Mon Sep 17 00:00:00 2001 From: schneefux Date: Thu, 8 Jun 2017 12:42:19 +0200 Subject: import 2.7.0 table changes --- models/stage.js | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 models/stage.js (limited to 'models/stage.js') diff --git a/models/stage.js b/models/stage.js new file mode 100644 index 0000000..222c130 --- /dev/null +++ b/models/stage.js @@ -0,0 +1,45 @@ +/* jshint indent: 2 */ + +module.exports = function(sequelize, DataTypes) { + return sequelize.define('stage', { + id: { + type: DataTypes.INTEGER(10).UNSIGNED, + allowNull: false, + primaryKey: true, + autoIncrement: true + }, + api_id: { + type: DataTypes.STRING(191), + allowNull: true + }, + season_id: { + type: DataTypes.INTEGER(11), + allowNull: false + }, + name: { + type: DataTypes.STRING(191), + allowNull: false + }, + start: { + type: DataTypes.TIME, + allowNull: true + }, + end: { + type: DataTypes.TIME, + allowNull: true + }, + type: { + type: DataTypes.ENUM('group','league','swiss','single_elimination','double_elimination','bracket'), + allowNull: false + }, + status: { + type: DataTypes.ENUM('planned','active','finished'), + allowNull: false + } + }, { + tableName: 'stage', + timestamps: false, + underscored: true, + freezeTableName: true + }); +}; -- cgit v1.3.1