@tomei/sso 0.53.1 → 0.53.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,13 +2,13 @@
2
2
 
3
3
  module.exports = {
4
4
  up: async (queryInterface, Sequelize) => {
5
- await queryInterface.addColumn('sso_Building', 'AreaManageUserId', {
5
+ await queryInterface.addColumn('sso_Building', 'AreaManagerUserId', {
6
6
  type: Sequelize.INTEGER(11),
7
7
  allowNull: false,
8
8
  });
9
9
  },
10
10
 
11
11
  down: async (queryInterface, Sequelize) => {
12
- await queryInterface.removeColumn('sso_Building', 'AreaManageUserId');
12
+ await queryInterface.removeColumn('sso_Building', 'AreaManagerUserId');
13
13
  },
14
14
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tomei/sso",
3
- "version": "0.53.1",
3
+ "version": "0.53.2",
4
4
  "description": "Tomei SSO Package",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {