|
@ -6,6 +6,7 @@ module.exports = dc => { |
|
|
const sequelize = dc.orm; |
|
|
const sequelize = dc.orm; |
|
|
const Bridge = sequelize.define("bridge", { |
|
|
const Bridge = sequelize.define("bridge", { |
|
|
id: { |
|
|
id: { |
|
|
|
|
|
index: 1, |
|
|
type: DataTypes.INTEGER, |
|
|
type: DataTypes.INTEGER, |
|
|
allowNull: false, |
|
|
allowNull: false, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -16,6 +17,7 @@ module.exports = dc => { |
|
|
unique: "bridge_id_uindex" |
|
|
unique: "bridge_id_uindex" |
|
|
}, |
|
|
}, |
|
|
bridgeCode: { |
|
|
bridgeCode: { |
|
|
|
|
|
index: 2, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -25,6 +27,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
bridgeName: { |
|
|
bridgeName: { |
|
|
|
|
|
index: 3, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -34,6 +37,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
centralStation: { |
|
|
centralStation: { |
|
|
|
|
|
index: 4, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -43,6 +47,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
crossingFigureType: { |
|
|
crossingFigureType: { |
|
|
|
|
|
index: 5, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -52,6 +57,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
crossingFigureName: { |
|
|
crossingFigureName: { |
|
|
|
|
|
index: 6, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -61,6 +67,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
natureOfCharges: { |
|
|
natureOfCharges: { |
|
|
|
|
|
index: 7, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -70,6 +77,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
rampCode: { |
|
|
rampCode: { |
|
|
|
|
|
index: 8, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -79,6 +87,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
sectionType: { |
|
|
sectionType: { |
|
|
|
|
|
index: 9, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -88,6 +97,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
crossingFigureType1: { |
|
|
crossingFigureType1: { |
|
|
|
|
|
index: 10, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -97,6 +107,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
crossingFigureName1: { |
|
|
crossingFigureName1: { |
|
|
|
|
|
index: 11, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -106,6 +117,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
originalBridgeCode: { |
|
|
originalBridgeCode: { |
|
|
|
|
|
index: 12, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -115,6 +127,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
whetherWideRoadAndNarrowBridge: { |
|
|
whetherWideRoadAndNarrowBridge: { |
|
|
|
|
|
index: 13, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -124,6 +137,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
isItInTheDirectoryOfLongAndLongBridges: { |
|
|
isItInTheDirectoryOfLongAndLongBridges: { |
|
|
|
|
|
index: 14, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -133,6 +147,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
whetherItIsACrossProvincialBridge: { |
|
|
whetherItIsACrossProvincialBridge: { |
|
|
|
|
|
index: 15, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -142,6 +157,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
interworkingType: { |
|
|
interworkingType: { |
|
|
|
|
|
index: 16, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -151,6 +167,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
interworkingForm: { |
|
|
interworkingForm: { |
|
|
|
|
|
index: 17, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -160,6 +177,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
interworkingAndCrossoverMode: { |
|
|
interworkingAndCrossoverMode: { |
|
|
|
|
|
index: 18, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -169,6 +187,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
bridgeClassification: { |
|
|
bridgeClassification: { |
|
|
|
|
|
index: 19, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -178,6 +197,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
totalLengthOfBridge: { |
|
|
totalLengthOfBridge: { |
|
|
|
|
|
index: 20, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -187,6 +207,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
totalSpanLength: { |
|
|
totalSpanLength: { |
|
|
|
|
|
index: 21, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -196,6 +217,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
mainSpanOfMainBridge: { |
|
|
mainSpanOfMainBridge: { |
|
|
|
|
|
index: 22, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -205,6 +227,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
numberOfMainBridgeHoles: { |
|
|
numberOfMainBridgeHoles: { |
|
|
|
|
|
index: 23, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -214,6 +237,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
spanCombination: { |
|
|
spanCombination: { |
|
|
|
|
|
index: 24, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -223,6 +247,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
bridgeProperties: { |
|
|
bridgeProperties: { |
|
|
|
|
|
index: 25, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -232,6 +257,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
designLoadClass: { |
|
|
designLoadClass: { |
|
|
|
|
|
index: 26, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -241,6 +267,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
superstructure: { |
|
|
superstructure: { |
|
|
|
|
|
index: 27, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -250,6 +277,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
superstructureMaterials: { |
|
|
superstructureMaterials: { |
|
|
|
|
|
index: 28, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -259,6 +287,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
bridgeDeckPavementType: { |
|
|
bridgeDeckPavementType: { |
|
|
|
|
|
index: 29, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -268,6 +297,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
bridgeDeckWidth: { |
|
|
bridgeDeckWidth: { |
|
|
|
|
|
index: 30, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -277,6 +307,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
clearWidthOfBridgeDeck: { |
|
|
clearWidthOfBridgeDeck: { |
|
|
|
|
|
index: 31, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -286,6 +317,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
clearanceUnderBridge: { |
|
|
clearanceUnderBridge: { |
|
|
|
|
|
index: 32, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -295,6 +327,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
seismicGrade: { |
|
|
seismicGrade: { |
|
|
|
|
|
index: 33, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -304,6 +337,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
navigationClass: { |
|
|
navigationClass: { |
|
|
|
|
|
index: 34, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -313,6 +347,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
abutmentType: { |
|
|
abutmentType: { |
|
|
|
|
|
index: 35, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -322,6 +357,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
pierType: { |
|
|
pierType: { |
|
|
|
|
|
index: 36, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -331,6 +367,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
typesOfPierAndAbutmentAntiCollisionFacilities: { |
|
|
typesOfPierAndAbutmentAntiCollisionFacilities: { |
|
|
|
|
|
index: 37, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -340,6 +377,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
expansionJointType: { |
|
|
expansionJointType: { |
|
|
|
|
|
index: 38, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -349,6 +387,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
supportType: { |
|
|
supportType: { |
|
|
|
|
|
index: 39, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -358,6 +397,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
characteristicsOfCurvedSlope: { |
|
|
characteristicsOfCurvedSlope: { |
|
|
|
|
|
index: 40, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -367,6 +407,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
bridgeHeight: { |
|
|
bridgeHeight: { |
|
|
|
|
|
index: 41, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -376,6 +417,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
sidewalkWidth: { |
|
|
sidewalkWidth: { |
|
|
|
|
|
index: 42, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -385,6 +427,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
constructionUnit: { |
|
|
constructionUnit: { |
|
|
|
|
|
index: 43, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -394,6 +437,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
completionTime: { |
|
|
completionTime: { |
|
|
|
|
|
index: 44, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -403,6 +447,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
openingDate: { |
|
|
openingDate: { |
|
|
|
|
|
index: 45, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -412,6 +457,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
reconstructionTime: { |
|
|
reconstructionTime: { |
|
|
|
|
|
index: 46, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -421,6 +467,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
totalCost: { |
|
|
totalCost: { |
|
|
|
|
|
index: 47, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -430,6 +477,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
nameOfDesignUnit: { |
|
|
nameOfDesignUnit: { |
|
|
|
|
|
index: 48, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -439,6 +487,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
nameOfConstructionUnit: { |
|
|
nameOfConstructionUnit: { |
|
|
|
|
|
index: 49, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -448,6 +497,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
nameOfSupervisionUnit: { |
|
|
nameOfSupervisionUnit: { |
|
|
|
|
|
index: 50, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -457,6 +507,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
natureOfConstruction: { |
|
|
natureOfConstruction: { |
|
|
|
|
|
index: 51, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -466,6 +517,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
evaluationDate: { |
|
|
evaluationDate: { |
|
|
|
|
|
index: 52, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -475,6 +527,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
technicalConditionEvaluation: { |
|
|
technicalConditionEvaluation: { |
|
|
|
|
|
index: 53, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -484,6 +537,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
assessmentUnit: { |
|
|
assessmentUnit: { |
|
|
|
|
|
index: 54, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -493,6 +547,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
locationOfMajorDiseases: { |
|
|
locationOfMajorDiseases: { |
|
|
|
|
|
index: 55, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -502,6 +557,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
diseaseDescription: { |
|
|
diseaseDescription: { |
|
|
|
|
|
index: 56, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -511,6 +567,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
takeControlMeasures: { |
|
|
takeControlMeasures: { |
|
|
|
|
|
index: 57, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -520,6 +577,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
dateOfLastPeriodicInspection: { |
|
|
dateOfLastPeriodicInspection: { |
|
|
|
|
|
index: 58, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -529,6 +587,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
natureOfManagementAndMaintenanceUnit: { |
|
|
natureOfManagementAndMaintenanceUnit: { |
|
|
|
|
|
index: 59, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -538,6 +597,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
managementAndMaintenanceUnit: { |
|
|
managementAndMaintenanceUnit: { |
|
|
|
|
|
index: 60, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -547,6 +607,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
supervisionUnit: { |
|
|
supervisionUnit: { |
|
|
|
|
|
index: 61, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -556,6 +617,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
reconstructionConstructionUnit: { |
|
|
reconstructionConstructionUnit: { |
|
|
|
|
|
index: 62, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -565,6 +627,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
whetherItIsASubsidyProjectOfTheMinistry: { |
|
|
whetherItIsASubsidyProjectOfTheMinistry: { |
|
|
|
|
|
index: 63, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -574,6 +637,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
engineeringProperties: { |
|
|
engineeringProperties: { |
|
|
|
|
|
index: 64, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -583,6 +647,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
reconstructionPart: { |
|
|
reconstructionPart: { |
|
|
|
|
|
index: 65, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -592,6 +657,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
modificationCompletionDate: { |
|
|
modificationCompletionDate: { |
|
|
|
|
|
index: 66, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -601,6 +667,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
year1: { |
|
|
year1: { |
|
|
|
|
|
index: 67, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -610,6 +677,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
spanCombination1: { |
|
|
spanCombination1: { |
|
|
|
|
|
index: 68, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -619,6 +687,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
investment1: { |
|
|
investment1: { |
|
|
|
|
|
index: 69, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -628,6 +697,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
year2: { |
|
|
year2: { |
|
|
|
|
|
index: 70, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -637,6 +707,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
spanCombination2: { |
|
|
spanCombination2: { |
|
|
|
|
|
index: 71, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -646,6 +717,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
investment2: { |
|
|
investment2: { |
|
|
|
|
|
index: 72, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -655,6 +727,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
year3: { |
|
|
year3: { |
|
|
|
|
|
index: 73, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -664,6 +737,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
spanCombination3: { |
|
|
spanCombination3: { |
|
|
|
|
|
index: 74, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -673,6 +747,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
investment3: { |
|
|
investment3: { |
|
|
|
|
|
index: 75, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -682,6 +757,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
year4: { |
|
|
year4: { |
|
|
|
|
|
index: 76, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -691,6 +767,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
spanCombination4: { |
|
|
spanCombination4: { |
|
|
|
|
|
index: 77, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -700,6 +777,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
investment4: { |
|
|
investment4: { |
|
|
|
|
|
index: 78, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -709,6 +787,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
year5: { |
|
|
year5: { |
|
|
|
|
|
index: 79, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -718,6 +797,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
spanCombination5: { |
|
|
spanCombination5: { |
|
|
|
|
|
index: 80, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -727,6 +807,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
investment5: { |
|
|
investment5: { |
|
|
|
|
|
index: 81, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -736,6 +817,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
plannedFundCategory: { |
|
|
plannedFundCategory: { |
|
|
|
|
|
index: 82, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -745,6 +827,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
plannedYear: { |
|
|
plannedYear: { |
|
|
|
|
|
index: 83, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -754,6 +837,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
planDocumentNo: { |
|
|
planDocumentNo: { |
|
|
|
|
|
index: 84, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -763,6 +847,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
planItemUniqueCode: { |
|
|
planItemUniqueCode: { |
|
|
|
|
|
index: 85, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -772,6 +857,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
plannedProjectType: { |
|
|
plannedProjectType: { |
|
|
|
|
|
index: 86, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -781,6 +867,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
planProjectName: { |
|
|
planProjectName: { |
|
|
|
|
|
index: 87, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -790,6 +877,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
completionStatus: { |
|
|
completionStatus: { |
|
|
|
|
|
index: 88, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -799,6 +887,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
yearOfCompletion: { |
|
|
yearOfCompletion: { |
|
|
|
|
|
index: 89, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -808,6 +897,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
reasonForChange: { |
|
|
reasonForChange: { |
|
|
|
|
|
index: 90, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -817,6 +907,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
changeTime: { |
|
|
changeTime: { |
|
|
|
|
|
index: 91, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -826,6 +917,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
reportingUnit: { |
|
|
reportingUnit: { |
|
|
|
|
|
index: 92, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -835,6 +927,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
remarks: { |
|
|
remarks: { |
|
|
|
|
|
index: 93, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -844,6 +937,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
whetherOverpassBridge: { |
|
|
whetherOverpassBridge: { |
|
|
|
|
|
index: 94, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -853,6 +947,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
offLineBridgeOrNot: { |
|
|
offLineBridgeOrNot: { |
|
|
|
|
|
index: 95, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -862,6 +957,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
whetherDangerousBridgeReconstruction: { |
|
|
whetherDangerousBridgeReconstruction: { |
|
|
|
|
|
index: 96, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -871,6 +967,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
districtcounty: { |
|
|
districtcounty: { |
|
|
|
|
|
index: 97, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
@ -880,6 +977,7 @@ module.exports = dc => { |
|
|
autoIncrement: false |
|
|
autoIncrement: false |
|
|
}, |
|
|
}, |
|
|
locationCity: { |
|
|
locationCity: { |
|
|
|
|
|
index: 98, |
|
|
type: DataTypes.STRING, |
|
|
type: DataTypes.STRING, |
|
|
allowNull: true, |
|
|
allowNull: true, |
|
|
defaultValue: null, |
|
|
defaultValue: null, |
|
|