使用node的Hapi框架搭建后台(四)——定义model

Step 1 :开启下划线命名规范

由于我们希望遵循 MySQL 数据库表字段的下划线命名规范,所以,需要全局开启一个 underscore: true 的定义,来使系统中默认的 createdAt 与 updatedAt 能以下划线的方式,与表结构保持一致。

修改 models/index.js 代码:

将 const config = require(__dirname + ‘/…/config/config.js’)[env];改成以下代码:

const configs = require(__dirname + '/../config/config.js');
const config = {
  ...configs[env],
  define: {
    underscored: true,
  },
};

Step 2:定义数据库相关的 model

在 models 下新建 stores.js:

module.exports = (sequelize, DataTypes) => sequelize.define(
  'stores',
  {
    id: {
      type: DataTypes.INTEGER,
      primaryKey: true,
      autoIncrement: true,
    },
    name: {
      type: DataTypes.STRING,
      allowNull: false,
    },
    password: {
      type: DataTypes.STRING,
      allowNULL: false,
    },
    longitude: {
      type: DataTypes.STRING,
      allowNULL: false,
    },
    latitude:{
      type: DataTypes.STRING,
      allowNULL: false
    },
    phone: {
      type: DataTypes.STRING,
      allowNULL: false
    },
    created_at: DataTypes.DATE,
    updated_at: DataTypes.DATE,
  },
  {
    tableName: 'stores',
  },
);

你可能感兴趣的:(node.js,Hapi,记录)