product_sku.js 753 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* indent size: 2 */
  2. 'use strict';
  3. module.exports = app => {
  4. const DataTypes = app.Sequelize;
  5. const Model = app.model.define('ProductSku', {
  6. id: {
  7. type: DataTypes.INTEGER(10).UNSIGNED,
  8. primaryKey: true,
  9. autoIncrement: true,
  10. },
  11. product_id: {
  12. type: DataTypes.INTEGER(10).UNSIGNED,
  13. allowNull: false,
  14. },
  15. volume: {
  16. type: DataTypes.INTEGER(10).UNSIGNED,
  17. allowNull: false,
  18. },
  19. price: {
  20. type: DataTypes.FLOAT,
  21. allowNull: true,
  22. },
  23. create_time: {
  24. type: DataTypes.DATE,
  25. allowNull: true,
  26. },
  27. }, {
  28. tableName: 'szj_product_sku',
  29. });
  30. Model.associate = function() {
  31. };
  32. // 同步:没有就新建,有就不变
  33. Model.sync();
  34. return Model;
  35. };