23 lines
524 B
23 lines
524 B
module.exports = function (sequelize, DataTypes) {
|
|
const Color = sequelize.define(
|
|
"Color",
|
|
{
|
|
// 图片地址
|
|
color: {
|
|
type: DataTypes.STRING
|
|
},
|
|
title: {
|
|
type: DataTypes.STRING,
|
|
allowNull: true
|
|
},
|
|
describe: {
|
|
type: DataTypes.STRING,
|
|
allowNull: true
|
|
},
|
|
},
|
|
{
|
|
timestamps: false,
|
|
}
|
|
);
|
|
return Color
|
|
};
|