usersEventLogs.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* indent size: 2 */
  2. // eslint-disable-next-line strict
  3. module.exports = app => {
  4. const DataTypes = app.Sequelize;
  5. const Model = app.model.define('UsersEventLogs', {
  6. id: {
  7. type: DataTypes.INTEGER(10).UNSIGNED,
  8. allowNull: false,
  9. primaryKey: true,
  10. autoIncrement: true,
  11. },
  12. user_id: {
  13. type: DataTypes.INTEGER(10).UNSIGNED,
  14. allowNull: true,
  15. },
  16. event_count: {
  17. type: DataTypes.INTEGER(10),
  18. allowNull: true,
  19. },
  20. event_name: {
  21. type: DataTypes.STRING(255),
  22. allowNull: true,
  23. },
  24. event_params: {
  25. type: DataTypes.STRING(255),
  26. allowNull: true,
  27. },
  28. update_time: {
  29. type: DataTypes.TIME,
  30. allowNull: true,
  31. },
  32. create_time: {
  33. type: DataTypes.DATE,
  34. allowNull: true,
  35. },
  36. pid: {
  37. type: DataTypes.INTEGER(4).UNSIGNED,
  38. allowNull: true,
  39. },
  40. }, {
  41. tableName: 'szj_users_event_logs',
  42. });
  43. Model.associate = function() {
  44. };
  45. // 同步:没有就新建,有就不变
  46. Model.sync();
  47. return Model;
  48. };