Commit 77e0ffbf by 宋毅

增加产品id

parent c1755347
......@@ -12,6 +12,7 @@ module.exports = (db, DataTypes) => {
type_pic: DataTypes.STRING(512),
type_desc: DataTypes.STRING(1024), //描述
type_icon: DataTypes.STRING(512),
service_product_id: DataTypes.STRING(255),
is_enabled: { //状态 0禁用 1启用
type: DataTypes.BOOLEAN,
defaultValue: true,
......@@ -24,11 +25,7 @@ module.exports = (db, DataTypes) => {
timestamps: true,
updatedAt: false,
tableName: 'p_product_type',
validate: {
},
indexes: [
]
validate: {},
indexes: []
});
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment