@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', '
|
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', '
|
12
|
+
await queryInterface.removeColumn('sso_Building', 'AreaManagerUserId');
|
13
13
|
},
|
14
14
|
};
|