@tomei/sso 0.64.0 → 0.65.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.commitlintrc.json +22 -22
 - package/.gitlab-ci.yml +16 -16
 - package/.husky/commit-msg +15 -15
 - package/.husky/pre-commit +7 -7
 - package/.prettierrc +4 -4
 - package/Jenkinsfile +57 -57
 - package/README.md +23 -23
 - package/__tests__/unit/components/group/group.spec.ts +79 -79
 - package/__tests__/unit/components/group-object-privilege/group-object-privilege.spec.ts +88 -88
 - package/__tests__/unit/components/group-privilege/group-privilege.spec.ts +68 -68
 - package/__tests__/unit/components/group-reporting-user/group-reporting-user.spec.ts +66 -66
 - package/__tests__/unit/components/group-system-access/group-system-access.spec.ts +83 -83
 - package/__tests__/unit/components/login-user/l.spec.ts +746 -746
 - package/__tests__/unit/components/login-user/login.spec.ts +1164 -1164
 - package/__tests__/unit/components/password-hash/password-hash.service.spec.ts +31 -31
 - package/__tests__/unit/components/system/system.spec.ts +254 -254
 - package/__tests__/unit/components/system-privilege/system-privilege.spec.ts +83 -83
 - package/__tests__/unit/components/user-group/user-group.spec.ts +86 -86
 - package/__tests__/unit/components/user-object-privilege/user-object-privilege.spec.ts +78 -78
 - package/__tests__/unit/components/user-privilege/user-privilege.spec.ts +72 -72
 - package/__tests__/unit/components/user-system-access/user-system-access.spec.ts +89 -89
 - package/__tests__/unit/redis-client/redis.service.spec.ts +23 -23
 - package/__tests__/unit/session/session.service.spec.ts +47 -47
 - package/__tests__/unit/system-privilege/system-privilage.spec.ts +91 -91
 - package/create-sso-user.sql +39 -39
 - package/dist/src/components/login-user/user.js +1 -1
 - package/dist/src/components/login-user/user.js.map +1 -1
 - package/dist/tsconfig.tsbuildinfo +1 -1
 - package/eslint.config.mjs +58 -58
 - package/jest.config.js +14 -14
 - package/migrations/20240314080602-create-user-table.js +124 -124
 - package/migrations/20240314080603-create-user-group-table.js +85 -85
 - package/migrations/20240314080604-create-user-user-group-table.js +55 -55
 - package/migrations/20240314080605-create-login-history-table.js +53 -53
 - package/migrations/20240527064925-create-system-table.js +78 -78
 - package/migrations/20240527064926-create-system-privilege-table.js +71 -71
 - package/migrations/20240527065342-create-group-table.js +93 -93
 - package/migrations/20240527065633-create-group-reporting-user-table.js +76 -76
 - package/migrations/20240528011551-create-group-system-access-table.js +72 -72
 - package/migrations/20240528023018-user-system-access-table.js +75 -75
 - package/migrations/20240528032229-user-privilege-table.js +76 -76
 - package/migrations/20240528063003-create-group-privilege-table.js +76 -76
 - package/migrations/20240528063051-create-group-object-privilege-table.js +84 -84
 - package/migrations/20240528063107-create-user-object-privilege-table.js +84 -84
 - package/migrations/20240528063108-create-api-key-table.js +85 -85
 - package/migrations/20241104104802-create-building-table.js +95 -95
 - package/migrations/20250108091132-add-area-manager-user-id-to-building-table.js +14 -14
 - package/migrations/20250108091133-add-passcode-to-user-table.js +36 -36
 - package/migrations/20250210115636-create-user-reporting-hierarchy.js +76 -76
 - package/migrations/20250326043818-crate-user-password-history.js +42 -42
 - package/migrations/20250610070720-added-MFBypassYN-to-sso-user.js +30 -30
 - package/package.json +87 -87
 - package/sampledotenv +7 -7
 - package/src/components/login-user/user.ts +1 -1
 - package/tsconfig.build.json +5 -5
 - package/tsconfig.json +23 -23
 - package/dist/__tests__/unit/components/group-privilege/group-privilege.test.d.ts +0 -1
 - package/dist/__tests__/unit/components/group-privilege/group-privilege.test.js +0 -71
 - package/dist/__tests__/unit/components/group-privilege/group-privilege.test.js.map +0 -1
 - package/dist/__tests__/unit/components/login-user/login-user.spec.d.ts +0 -0
 - package/dist/__tests__/unit/components/login-user/login-user.spec.js +0 -6
 - package/dist/__tests__/unit/components/login-user/login-user.spec.js.map +0 -1
 - package/sonar-project.properties +0 -23
 
    
        package/eslint.config.mjs
    CHANGED
    
    | 
         @@ -1,58 +1,58 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            import eslintPlugin from "@typescript-eslint/eslint-plugin";
         
     | 
| 
       2 
     | 
    
         
            -
            import parser from "@typescript-eslint/parser";
         
     | 
| 
       3 
     | 
    
         
            -
            import importPlugin from 'eslint-plugin-import'
         
     | 
| 
       4 
     | 
    
         
            -
            import path from 'path';
         
     | 
| 
       5 
     | 
    
         
            -
            import { fileURLToPath } from 'url';
         
     | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
            const __filename = fileURLToPath(import.meta.url);
         
     | 
| 
       8 
     | 
    
         
            -
            const __dirname = path.dirname(__filename);
         
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
       10 
     | 
    
         
            -
            export default [
         
     | 
| 
       11 
     | 
    
         
            -
              {
         
     | 
| 
       12 
     | 
    
         
            -
                languageOptions: {
         
     | 
| 
       13 
     | 
    
         
            -
                  parser: parser,
         
     | 
| 
       14 
     | 
    
         
            -
                  ecmaVersion: "latest", // Allows modern ECMAScript features
         
     | 
| 
       15 
     | 
    
         
            -
                  sourceType: "module",  // Allows for the use of imports
         
     | 
| 
       16 
     | 
    
         
            -
                  parserOptions: {
         
     | 
| 
       17 
     | 
    
         
            -
                    tsconfigRootDir: __dirname,
         
     | 
| 
       18 
     | 
    
         
            -
                    project: './tsconfig.json'
         
     | 
| 
       19 
     | 
    
         
            -
                  },
         
     | 
| 
       20 
     | 
    
         
            -
                },
         
     | 
| 
       21 
     | 
    
         
            -
                plugins: {
         
     | 
| 
       22 
     | 
    
         
            -
                  "@typescript-eslint": eslintPlugin,
         
     | 
| 
       23 
     | 
    
         
            -
                  import: importPlugin
         
     | 
| 
       24 
     | 
    
         
            -
                },
         
     | 
| 
       25 
     | 
    
         
            -
                rules: {
         
     | 
| 
       26 
     | 
    
         
            -
                  "no-console": "off",
         
     | 
| 
       27 
     | 
    
         
            -
                  "@typescript-eslint/no-explicit-any": "off",
         
     | 
| 
       28 
     | 
    
         
            -
                  "@typescript-eslint/no-var-requires": "off",
         
     | 
| 
       29 
     | 
    
         
            -
                  "@typescript-eslint/explicit-module-boundary-types": "off",
         
     | 
| 
       30 
     | 
    
         
            -
                  "import/prefer-default-export": "off",
         
     | 
| 
       31 
     | 
    
         
            -
                  "@typescript-eslint/no-unused-vars": "warn",
         
     | 
| 
       32 
     | 
    
         
            -
                  "no-useless-catch": "off",
         
     | 
| 
       33 
     | 
    
         
            -
                  "@typescript-eslint/no-non-null-assertion": "off",
         
     | 
| 
       34 
     | 
    
         
            -
                  "@typescript-eslint/no-empty-function": "off",
         
     | 
| 
       35 
     | 
    
         
            -
                  "@typescript-eslint/no-empty-interface": "off",
         
     | 
| 
       36 
     | 
    
         
            -
                  "@typescript-eslint/no-inferrable-types": "off",
         
     | 
| 
       37 
     | 
    
         
            -
                  "@typescript-eslint/no-namespace": "off",
         
     | 
| 
       38 
     | 
    
         
            -
                  "@typescript-eslint/no-use-before-define": "off",
         
     | 
| 
       39 
     | 
    
         
            -
                  "@typescript-eslint/no-unsafe-assignment": "off",
         
     | 
| 
       40 
     | 
    
         
            -
                  "@typescript-eslint/no-unsafe-call": "off",
         
     | 
| 
       41 
     | 
    
         
            -
                  "@typescript-eslint/no-unsafe-member-access": "off",
         
     | 
| 
       42 
     | 
    
         
            -
                  "@typescript-eslint/no-unsafe-return": "off",
         
     | 
| 
       43 
     | 
    
         
            -
                  "@typescript-eslint/restrict-template-expressions": "off",
         
     | 
| 
       44 
     | 
    
         
            -
                  "no-useless-escape": "off",
         
     | 
| 
       45 
     | 
    
         
            -
                  "import/no-relative-parent-imports": "error", // Enforce relative imports only
         
     | 
| 
       46 
     | 
    
         
            -
                  "import/no-absolute-path": "error",          // Block absolute imports outside aliases
         
     | 
| 
       47 
     | 
    
         
            -
                  "import/no-unresolved": ["error", { commonjs: true }],
         
     | 
| 
       48 
     | 
    
         
            -
                },
         
     | 
| 
       49 
     | 
    
         
            -
                settings: {
         
     | 
| 
       50 
     | 
    
         
            -
                  "import/resolver": {
         
     | 
| 
       51 
     | 
    
         
            -
                    typescript: {
         
     | 
| 
       52 
     | 
    
         
            -
                      alwaysTryTypes: true,
         
     | 
| 
       53 
     | 
    
         
            -
                    }
         
     | 
| 
       54 
     | 
    
         
            -
                  }
         
     | 
| 
       55 
     | 
    
         
            -
                },
         
     | 
| 
       56 
     | 
    
         
            -
                ignores: ["node_modules", "dist/**/*", "eslint.config.mjs"],
         
     | 
| 
       57 
     | 
    
         
            -
              },
         
     | 
| 
       58 
     | 
    
         
            -
            ];
         
     | 
| 
      
 1 
     | 
    
         
            +
            import eslintPlugin from "@typescript-eslint/eslint-plugin";
         
     | 
| 
      
 2 
     | 
    
         
            +
            import parser from "@typescript-eslint/parser";
         
     | 
| 
      
 3 
     | 
    
         
            +
            import importPlugin from 'eslint-plugin-import'
         
     | 
| 
      
 4 
     | 
    
         
            +
            import path from 'path';
         
     | 
| 
      
 5 
     | 
    
         
            +
            import { fileURLToPath } from 'url';
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            const __filename = fileURLToPath(import.meta.url);
         
     | 
| 
      
 8 
     | 
    
         
            +
            const __dirname = path.dirname(__filename);
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            export default [
         
     | 
| 
      
 11 
     | 
    
         
            +
              {
         
     | 
| 
      
 12 
     | 
    
         
            +
                languageOptions: {
         
     | 
| 
      
 13 
     | 
    
         
            +
                  parser: parser,
         
     | 
| 
      
 14 
     | 
    
         
            +
                  ecmaVersion: "latest", // Allows modern ECMAScript features
         
     | 
| 
      
 15 
     | 
    
         
            +
                  sourceType: "module",  // Allows for the use of imports
         
     | 
| 
      
 16 
     | 
    
         
            +
                  parserOptions: {
         
     | 
| 
      
 17 
     | 
    
         
            +
                    tsconfigRootDir: __dirname,
         
     | 
| 
      
 18 
     | 
    
         
            +
                    project: './tsconfig.json'
         
     | 
| 
      
 19 
     | 
    
         
            +
                  },
         
     | 
| 
      
 20 
     | 
    
         
            +
                },
         
     | 
| 
      
 21 
     | 
    
         
            +
                plugins: {
         
     | 
| 
      
 22 
     | 
    
         
            +
                  "@typescript-eslint": eslintPlugin,
         
     | 
| 
      
 23 
     | 
    
         
            +
                  import: importPlugin
         
     | 
| 
      
 24 
     | 
    
         
            +
                },
         
     | 
| 
      
 25 
     | 
    
         
            +
                rules: {
         
     | 
| 
      
 26 
     | 
    
         
            +
                  "no-console": "off",
         
     | 
| 
      
 27 
     | 
    
         
            +
                  "@typescript-eslint/no-explicit-any": "off",
         
     | 
| 
      
 28 
     | 
    
         
            +
                  "@typescript-eslint/no-var-requires": "off",
         
     | 
| 
      
 29 
     | 
    
         
            +
                  "@typescript-eslint/explicit-module-boundary-types": "off",
         
     | 
| 
      
 30 
     | 
    
         
            +
                  "import/prefer-default-export": "off",
         
     | 
| 
      
 31 
     | 
    
         
            +
                  "@typescript-eslint/no-unused-vars": "warn",
         
     | 
| 
      
 32 
     | 
    
         
            +
                  "no-useless-catch": "off",
         
     | 
| 
      
 33 
     | 
    
         
            +
                  "@typescript-eslint/no-non-null-assertion": "off",
         
     | 
| 
      
 34 
     | 
    
         
            +
                  "@typescript-eslint/no-empty-function": "off",
         
     | 
| 
      
 35 
     | 
    
         
            +
                  "@typescript-eslint/no-empty-interface": "off",
         
     | 
| 
      
 36 
     | 
    
         
            +
                  "@typescript-eslint/no-inferrable-types": "off",
         
     | 
| 
      
 37 
     | 
    
         
            +
                  "@typescript-eslint/no-namespace": "off",
         
     | 
| 
      
 38 
     | 
    
         
            +
                  "@typescript-eslint/no-use-before-define": "off",
         
     | 
| 
      
 39 
     | 
    
         
            +
                  "@typescript-eslint/no-unsafe-assignment": "off",
         
     | 
| 
      
 40 
     | 
    
         
            +
                  "@typescript-eslint/no-unsafe-call": "off",
         
     | 
| 
      
 41 
     | 
    
         
            +
                  "@typescript-eslint/no-unsafe-member-access": "off",
         
     | 
| 
      
 42 
     | 
    
         
            +
                  "@typescript-eslint/no-unsafe-return": "off",
         
     | 
| 
      
 43 
     | 
    
         
            +
                  "@typescript-eslint/restrict-template-expressions": "off",
         
     | 
| 
      
 44 
     | 
    
         
            +
                  "no-useless-escape": "off",
         
     | 
| 
      
 45 
     | 
    
         
            +
                  "import/no-relative-parent-imports": "error", // Enforce relative imports only
         
     | 
| 
      
 46 
     | 
    
         
            +
                  "import/no-absolute-path": "error",          // Block absolute imports outside aliases
         
     | 
| 
      
 47 
     | 
    
         
            +
                  "import/no-unresolved": ["error", { commonjs: true }],
         
     | 
| 
      
 48 
     | 
    
         
            +
                },
         
     | 
| 
      
 49 
     | 
    
         
            +
                settings: {
         
     | 
| 
      
 50 
     | 
    
         
            +
                  "import/resolver": {
         
     | 
| 
      
 51 
     | 
    
         
            +
                    typescript: {
         
     | 
| 
      
 52 
     | 
    
         
            +
                      alwaysTryTypes: true,
         
     | 
| 
      
 53 
     | 
    
         
            +
                    }
         
     | 
| 
      
 54 
     | 
    
         
            +
                  }
         
     | 
| 
      
 55 
     | 
    
         
            +
                },
         
     | 
| 
      
 56 
     | 
    
         
            +
                ignores: ["node_modules", "dist/**/*", "eslint.config.mjs"],
         
     | 
| 
      
 57 
     | 
    
         
            +
              },
         
     | 
| 
      
 58 
     | 
    
         
            +
            ];
         
     | 
    
        package/jest.config.js
    CHANGED
    
    | 
         @@ -1,15 +1,15 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            /** @type {import('ts-jest').JestConfigWithTsJest} */
         
     | 
| 
       2 
     | 
    
         
            -
            module.exports = {
         
     | 
| 
       3 
     | 
    
         
            -
              clearMocks: true,
         
     | 
| 
       4 
     | 
    
         
            -
              preset: 'ts-jest',
         
     | 
| 
       5 
     | 
    
         
            -
              testTimeout: 20000,
         
     | 
| 
       6 
     | 
    
         
            -
              coverageDirectory: "coverage",
         
     | 
| 
       7 
     | 
    
         
            -
              testEnvironment: 'node',
         
     | 
| 
       8 
     | 
    
         
            -
              "modulePathIgnorePatterns": [
         
     | 
| 
       9 
     | 
    
         
            -
                "<rootDir>/dist"
         
     | 
| 
       10 
     | 
    
         
            -
              ],
         
     | 
| 
       11 
     | 
    
         
            -
              setupFilesAfterEnv: [
         
     | 
| 
       12 
     | 
    
         
            -
                '<rootDir>/src/redis-client/__mocks__/jest-initial-setup.ts',
         
     | 
| 
       13 
     | 
    
         
            -
              ],
         
     | 
| 
       14 
     | 
    
         
            -
              "testResultsProcessor":  "jest-sonar-reporter"   
         
     | 
| 
      
 1 
     | 
    
         
            +
            /** @type {import('ts-jest').JestConfigWithTsJest} */
         
     | 
| 
      
 2 
     | 
    
         
            +
            module.exports = {
         
     | 
| 
      
 3 
     | 
    
         
            +
              clearMocks: true,
         
     | 
| 
      
 4 
     | 
    
         
            +
              preset: 'ts-jest',
         
     | 
| 
      
 5 
     | 
    
         
            +
              testTimeout: 20000,
         
     | 
| 
      
 6 
     | 
    
         
            +
              coverageDirectory: "coverage",
         
     | 
| 
      
 7 
     | 
    
         
            +
              testEnvironment: 'node',
         
     | 
| 
      
 8 
     | 
    
         
            +
              "modulePathIgnorePatterns": [
         
     | 
| 
      
 9 
     | 
    
         
            +
                "<rootDir>/dist"
         
     | 
| 
      
 10 
     | 
    
         
            +
              ],
         
     | 
| 
      
 11 
     | 
    
         
            +
              setupFilesAfterEnv: [
         
     | 
| 
      
 12 
     | 
    
         
            +
                '<rootDir>/src/redis-client/__mocks__/jest-initial-setup.ts',
         
     | 
| 
      
 13 
     | 
    
         
            +
              ],
         
     | 
| 
      
 14 
     | 
    
         
            +
              "testResultsProcessor":  "jest-sonar-reporter"   
         
     | 
| 
       15 
15 
     | 
    
         
             
            };
         
     | 
| 
         @@ -1,124 +1,124 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            'use strict';
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
            /** @type {import('sequelize-cli').Migration} */
         
     | 
| 
       4 
     | 
    
         
            -
            module.exports = {
         
     | 
| 
       5 
     | 
    
         
            -
              async up(queryInterface, Sequelize) {
         
     | 
| 
       6 
     | 
    
         
            -
                await queryInterface.createTable('sso_User', {
         
     | 
| 
       7 
     | 
    
         
            -
                  UserId: {
         
     | 
| 
       8 
     | 
    
         
            -
                    primaryKey: true,
         
     | 
| 
       9 
     | 
    
         
            -
                    type: Sequelize.INTEGER,
         
     | 
| 
       10 
     | 
    
         
            -
                    allowNull: false,
         
     | 
| 
       11 
     | 
    
         
            -
                    autoIncrement: true,
         
     | 
| 
       12 
     | 
    
         
            -
                  },
         
     | 
| 
       13 
     | 
    
         
            -
                  UserName: {
         
     | 
| 
       14 
     | 
    
         
            -
                    type: Sequelize.STRING(50),
         
     | 
| 
       15 
     | 
    
         
            -
                    allowNull: true,
         
     | 
| 
       16 
     | 
    
         
            -
                  },
         
     | 
| 
       17 
     | 
    
         
            -
                  Email: {
         
     | 
| 
       18 
     | 
    
         
            -
                    type: Sequelize.STRING,
         
     | 
| 
       19 
     | 
    
         
            -
                    allowNull: false,
         
     | 
| 
       20 
     | 
    
         
            -
                    unique: true,
         
     | 
| 
       21 
     | 
    
         
            -
                  },
         
     | 
| 
       22 
     | 
    
         
            -
                  Password: {
         
     | 
| 
       23 
     | 
    
         
            -
                    type: Sequelize.STRING,
         
     | 
| 
       24 
     | 
    
         
            -
                    allowNull: false,
         
     | 
| 
       25 
     | 
    
         
            -
                  },
         
     | 
| 
       26 
     | 
    
         
            -
                  FullName: {
         
     | 
| 
       27 
     | 
    
         
            -
                    type: Sequelize.STRING(200),
         
     | 
| 
       28 
     | 
    
         
            -
                    allowNull: true,
         
     | 
| 
       29 
     | 
    
         
            -
                  },
         
     | 
| 
       30 
     | 
    
         
            -
                  IdNo: {
         
     | 
| 
       31 
     | 
    
         
            -
                    type: Sequelize.STRING(50),
         
     | 
| 
       32 
     | 
    
         
            -
                    allowNull: true,
         
     | 
| 
       33 
     | 
    
         
            -
                  },
         
     | 
| 
       34 
     | 
    
         
            -
                  IdType: {
         
     | 
| 
       35 
     | 
    
         
            -
                    type: Sequelize.STRING(20),
         
     | 
| 
       36 
     | 
    
         
            -
                    allowNull: true,
         
     | 
| 
       37 
     | 
    
         
            -
                  },
         
     | 
| 
       38 
     | 
    
         
            -
                  ContactNo: {
         
     | 
| 
       39 
     | 
    
         
            -
                    type: Sequelize.STRING(20),
         
     | 
| 
       40 
     | 
    
         
            -
                    allowNull: true,
         
     | 
| 
       41 
     | 
    
         
            -
                  },
         
     | 
| 
       42 
     | 
    
         
            -
                  Status: {
         
     | 
| 
       43 
     | 
    
         
            -
                    type: Sequelize.STRING,
         
     | 
| 
       44 
     | 
    
         
            -
                    allowNull: false,
         
     | 
| 
       45 
     | 
    
         
            -
                  },
         
     | 
| 
       46 
     | 
    
         
            -
                  DefaultPasswordChangedYN: {
         
     | 
| 
       47 
     | 
    
         
            -
                    type: Sequelize.CHAR(1),
         
     | 
| 
       48 
     | 
    
         
            -
                    allowNull: true,
         
     | 
| 
       49 
     | 
    
         
            -
                  },
         
     | 
| 
       50 
     | 
    
         
            -
                  FirstLoginAt: {
         
     | 
| 
       51 
     | 
    
         
            -
                    type: Sequelize.DATE,
         
     | 
| 
       52 
     | 
    
         
            -
                    allowNull: true,
         
     | 
| 
       53 
     | 
    
         
            -
                  },
         
     | 
| 
       54 
     | 
    
         
            -
                  LastLoginAt: {
         
     | 
| 
       55 
     | 
    
         
            -
                    type: Sequelize.DATE,
         
     | 
| 
       56 
     | 
    
         
            -
                    allowNull: true,
         
     | 
| 
       57 
     | 
    
         
            -
                  },
         
     | 
| 
       58 
     | 
    
         
            -
                  MFAEnabled: {
         
     | 
| 
       59 
     | 
    
         
            -
                    type: Sequelize.TINYINT,
         
     | 
| 
       60 
     | 
    
         
            -
                    allowNull: true,
         
     | 
| 
       61 
     | 
    
         
            -
                  },
         
     | 
| 
       62 
     | 
    
         
            -
                  MFAConfig: {
         
     | 
| 
       63 
     | 
    
         
            -
                    type: Sequelize.TEXT,
         
     | 
| 
       64 
     | 
    
         
            -
                    allowNull: true,
         
     | 
| 
       65 
     | 
    
         
            -
                  },
         
     | 
| 
       66 
     | 
    
         
            -
                  RecoveryEmail: {
         
     | 
| 
       67 
     | 
    
         
            -
                    type: Sequelize.STRING,
         
     | 
| 
       68 
     | 
    
         
            -
                    allowNull: true,
         
     | 
| 
       69 
     | 
    
         
            -
                  },
         
     | 
| 
       70 
     | 
    
         
            -
                  FailedLoginAttemptCount: {
         
     | 
| 
       71 
     | 
    
         
            -
                    type: Sequelize.INTEGER,
         
     | 
| 
       72 
     | 
    
         
            -
                    allowNull: false,
         
     | 
| 
       73 
     | 
    
         
            -
                  },
         
     | 
| 
       74 
     | 
    
         
            -
                  LastFailedLoginAt: {
         
     | 
| 
       75 
     | 
    
         
            -
                    type: Sequelize.DATE,
         
     | 
| 
       76 
     | 
    
         
            -
                    allowNull: true,
         
     | 
| 
       77 
     | 
    
         
            -
                  },
         
     | 
| 
       78 
     | 
    
         
            -
                  LastPasswordChangedAt: {
         
     | 
| 
       79 
     | 
    
         
            -
                    type: Sequelize.DATE,
         
     | 
| 
       80 
     | 
    
         
            -
                    allowNull: true,
         
     | 
| 
       81 
     | 
    
         
            -
                  },
         
     | 
| 
       82 
     | 
    
         
            -
                  NeedToChangePasswordYN: {
         
     | 
| 
       83 
     | 
    
         
            -
                    type: Sequelize.CHAR(1),
         
     | 
| 
       84 
     | 
    
         
            -
                    allowNull: true,
         
     | 
| 
       85 
     | 
    
         
            -
                  },
         
     | 
| 
       86 
     | 
    
         
            -
                  CreatedAt: {
         
     | 
| 
       87 
     | 
    
         
            -
                    allowNull: false,
         
     | 
| 
       88 
     | 
    
         
            -
                    defaultValue: Sequelize.literal('CURRENT_TIMESTAMP(3)'),
         
     | 
| 
       89 
     | 
    
         
            -
                    type: Sequelize.DATE,
         
     | 
| 
       90 
     | 
    
         
            -
                  },
         
     | 
| 
       91 
     | 
    
         
            -
                  CreatedById: {
         
     | 
| 
       92 
     | 
    
         
            -
                    type: Sequelize.INTEGER,
         
     | 
| 
       93 
     | 
    
         
            -
                    allowNull: true,
         
     | 
| 
       94 
     | 
    
         
            -
                    references: {
         
     | 
| 
       95 
     | 
    
         
            -
                      model: 'sso_User',
         
     | 
| 
       96 
     | 
    
         
            -
                      key: 'UserId',
         
     | 
| 
       97 
     | 
    
         
            -
                    },
         
     | 
| 
       98 
     | 
    
         
            -
                    onDelete: 'CASCADE',
         
     | 
| 
       99 
     | 
    
         
            -
                    onUpdate: 'CASCADE',
         
     | 
| 
       100 
     | 
    
         
            -
                  },
         
     | 
| 
       101 
     | 
    
         
            -
                  UpdatedAt: {
         
     | 
| 
       102 
     | 
    
         
            -
                    allowNull: false,
         
     | 
| 
       103 
     | 
    
         
            -
                    defaultValue: Sequelize.literal(
         
     | 
| 
       104 
     | 
    
         
            -
                      'CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3)',
         
     | 
| 
       105 
     | 
    
         
            -
                    ),
         
     | 
| 
       106 
     | 
    
         
            -
                    type: Sequelize.DATE,
         
     | 
| 
       107 
     | 
    
         
            -
                  },
         
     | 
| 
       108 
     | 
    
         
            -
                  UpdatedById: {
         
     | 
| 
       109 
     | 
    
         
            -
                    type: Sequelize.INTEGER,
         
     | 
| 
       110 
     | 
    
         
            -
                    allowNull: true,
         
     | 
| 
       111 
     | 
    
         
            -
                    references: {
         
     | 
| 
       112 
     | 
    
         
            -
                      model: 'sso_User',
         
     | 
| 
       113 
     | 
    
         
            -
                      key: 'UserId',
         
     | 
| 
       114 
     | 
    
         
            -
                    },
         
     | 
| 
       115 
     | 
    
         
            -
                    onDelete: 'CASCADE',
         
     | 
| 
       116 
     | 
    
         
            -
                    onUpdate: 'CASCADE',
         
     | 
| 
       117 
     | 
    
         
            -
                  },
         
     | 
| 
       118 
     | 
    
         
            -
                });
         
     | 
| 
       119 
     | 
    
         
            -
              },
         
     | 
| 
       120 
     | 
    
         
            -
             
     | 
| 
       121 
     | 
    
         
            -
              async down(queryInterface) {
         
     | 
| 
       122 
     | 
    
         
            -
                await queryInterface.dropTable('sso_User');
         
     | 
| 
       123 
     | 
    
         
            -
              },
         
     | 
| 
       124 
     | 
    
         
            -
            };
         
     | 
| 
      
 1 
     | 
    
         
            +
            'use strict';
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            /** @type {import('sequelize-cli').Migration} */
         
     | 
| 
      
 4 
     | 
    
         
            +
            module.exports = {
         
     | 
| 
      
 5 
     | 
    
         
            +
              async up(queryInterface, Sequelize) {
         
     | 
| 
      
 6 
     | 
    
         
            +
                await queryInterface.createTable('sso_User', {
         
     | 
| 
      
 7 
     | 
    
         
            +
                  UserId: {
         
     | 
| 
      
 8 
     | 
    
         
            +
                    primaryKey: true,
         
     | 
| 
      
 9 
     | 
    
         
            +
                    type: Sequelize.INTEGER,
         
     | 
| 
      
 10 
     | 
    
         
            +
                    allowNull: false,
         
     | 
| 
      
 11 
     | 
    
         
            +
                    autoIncrement: true,
         
     | 
| 
      
 12 
     | 
    
         
            +
                  },
         
     | 
| 
      
 13 
     | 
    
         
            +
                  UserName: {
         
     | 
| 
      
 14 
     | 
    
         
            +
                    type: Sequelize.STRING(50),
         
     | 
| 
      
 15 
     | 
    
         
            +
                    allowNull: true,
         
     | 
| 
      
 16 
     | 
    
         
            +
                  },
         
     | 
| 
      
 17 
     | 
    
         
            +
                  Email: {
         
     | 
| 
      
 18 
     | 
    
         
            +
                    type: Sequelize.STRING,
         
     | 
| 
      
 19 
     | 
    
         
            +
                    allowNull: false,
         
     | 
| 
      
 20 
     | 
    
         
            +
                    unique: true,
         
     | 
| 
      
 21 
     | 
    
         
            +
                  },
         
     | 
| 
      
 22 
     | 
    
         
            +
                  Password: {
         
     | 
| 
      
 23 
     | 
    
         
            +
                    type: Sequelize.STRING,
         
     | 
| 
      
 24 
     | 
    
         
            +
                    allowNull: false,
         
     | 
| 
      
 25 
     | 
    
         
            +
                  },
         
     | 
| 
      
 26 
     | 
    
         
            +
                  FullName: {
         
     | 
| 
      
 27 
     | 
    
         
            +
                    type: Sequelize.STRING(200),
         
     | 
| 
      
 28 
     | 
    
         
            +
                    allowNull: true,
         
     | 
| 
      
 29 
     | 
    
         
            +
                  },
         
     | 
| 
      
 30 
     | 
    
         
            +
                  IdNo: {
         
     | 
| 
      
 31 
     | 
    
         
            +
                    type: Sequelize.STRING(50),
         
     | 
| 
      
 32 
     | 
    
         
            +
                    allowNull: true,
         
     | 
| 
      
 33 
     | 
    
         
            +
                  },
         
     | 
| 
      
 34 
     | 
    
         
            +
                  IdType: {
         
     | 
| 
      
 35 
     | 
    
         
            +
                    type: Sequelize.STRING(20),
         
     | 
| 
      
 36 
     | 
    
         
            +
                    allowNull: true,
         
     | 
| 
      
 37 
     | 
    
         
            +
                  },
         
     | 
| 
      
 38 
     | 
    
         
            +
                  ContactNo: {
         
     | 
| 
      
 39 
     | 
    
         
            +
                    type: Sequelize.STRING(20),
         
     | 
| 
      
 40 
     | 
    
         
            +
                    allowNull: true,
         
     | 
| 
      
 41 
     | 
    
         
            +
                  },
         
     | 
| 
      
 42 
     | 
    
         
            +
                  Status: {
         
     | 
| 
      
 43 
     | 
    
         
            +
                    type: Sequelize.STRING,
         
     | 
| 
      
 44 
     | 
    
         
            +
                    allowNull: false,
         
     | 
| 
      
 45 
     | 
    
         
            +
                  },
         
     | 
| 
      
 46 
     | 
    
         
            +
                  DefaultPasswordChangedYN: {
         
     | 
| 
      
 47 
     | 
    
         
            +
                    type: Sequelize.CHAR(1),
         
     | 
| 
      
 48 
     | 
    
         
            +
                    allowNull: true,
         
     | 
| 
      
 49 
     | 
    
         
            +
                  },
         
     | 
| 
      
 50 
     | 
    
         
            +
                  FirstLoginAt: {
         
     | 
| 
      
 51 
     | 
    
         
            +
                    type: Sequelize.DATE,
         
     | 
| 
      
 52 
     | 
    
         
            +
                    allowNull: true,
         
     | 
| 
      
 53 
     | 
    
         
            +
                  },
         
     | 
| 
      
 54 
     | 
    
         
            +
                  LastLoginAt: {
         
     | 
| 
      
 55 
     | 
    
         
            +
                    type: Sequelize.DATE,
         
     | 
| 
      
 56 
     | 
    
         
            +
                    allowNull: true,
         
     | 
| 
      
 57 
     | 
    
         
            +
                  },
         
     | 
| 
      
 58 
     | 
    
         
            +
                  MFAEnabled: {
         
     | 
| 
      
 59 
     | 
    
         
            +
                    type: Sequelize.TINYINT,
         
     | 
| 
      
 60 
     | 
    
         
            +
                    allowNull: true,
         
     | 
| 
      
 61 
     | 
    
         
            +
                  },
         
     | 
| 
      
 62 
     | 
    
         
            +
                  MFAConfig: {
         
     | 
| 
      
 63 
     | 
    
         
            +
                    type: Sequelize.TEXT,
         
     | 
| 
      
 64 
     | 
    
         
            +
                    allowNull: true,
         
     | 
| 
      
 65 
     | 
    
         
            +
                  },
         
     | 
| 
      
 66 
     | 
    
         
            +
                  RecoveryEmail: {
         
     | 
| 
      
 67 
     | 
    
         
            +
                    type: Sequelize.STRING,
         
     | 
| 
      
 68 
     | 
    
         
            +
                    allowNull: true,
         
     | 
| 
      
 69 
     | 
    
         
            +
                  },
         
     | 
| 
      
 70 
     | 
    
         
            +
                  FailedLoginAttemptCount: {
         
     | 
| 
      
 71 
     | 
    
         
            +
                    type: Sequelize.INTEGER,
         
     | 
| 
      
 72 
     | 
    
         
            +
                    allowNull: false,
         
     | 
| 
      
 73 
     | 
    
         
            +
                  },
         
     | 
| 
      
 74 
     | 
    
         
            +
                  LastFailedLoginAt: {
         
     | 
| 
      
 75 
     | 
    
         
            +
                    type: Sequelize.DATE,
         
     | 
| 
      
 76 
     | 
    
         
            +
                    allowNull: true,
         
     | 
| 
      
 77 
     | 
    
         
            +
                  },
         
     | 
| 
      
 78 
     | 
    
         
            +
                  LastPasswordChangedAt: {
         
     | 
| 
      
 79 
     | 
    
         
            +
                    type: Sequelize.DATE,
         
     | 
| 
      
 80 
     | 
    
         
            +
                    allowNull: true,
         
     | 
| 
      
 81 
     | 
    
         
            +
                  },
         
     | 
| 
      
 82 
     | 
    
         
            +
                  NeedToChangePasswordYN: {
         
     | 
| 
      
 83 
     | 
    
         
            +
                    type: Sequelize.CHAR(1),
         
     | 
| 
      
 84 
     | 
    
         
            +
                    allowNull: true,
         
     | 
| 
      
 85 
     | 
    
         
            +
                  },
         
     | 
| 
      
 86 
     | 
    
         
            +
                  CreatedAt: {
         
     | 
| 
      
 87 
     | 
    
         
            +
                    allowNull: false,
         
     | 
| 
      
 88 
     | 
    
         
            +
                    defaultValue: Sequelize.literal('CURRENT_TIMESTAMP(3)'),
         
     | 
| 
      
 89 
     | 
    
         
            +
                    type: Sequelize.DATE,
         
     | 
| 
      
 90 
     | 
    
         
            +
                  },
         
     | 
| 
      
 91 
     | 
    
         
            +
                  CreatedById: {
         
     | 
| 
      
 92 
     | 
    
         
            +
                    type: Sequelize.INTEGER,
         
     | 
| 
      
 93 
     | 
    
         
            +
                    allowNull: true,
         
     | 
| 
      
 94 
     | 
    
         
            +
                    references: {
         
     | 
| 
      
 95 
     | 
    
         
            +
                      model: 'sso_User',
         
     | 
| 
      
 96 
     | 
    
         
            +
                      key: 'UserId',
         
     | 
| 
      
 97 
     | 
    
         
            +
                    },
         
     | 
| 
      
 98 
     | 
    
         
            +
                    onDelete: 'CASCADE',
         
     | 
| 
      
 99 
     | 
    
         
            +
                    onUpdate: 'CASCADE',
         
     | 
| 
      
 100 
     | 
    
         
            +
                  },
         
     | 
| 
      
 101 
     | 
    
         
            +
                  UpdatedAt: {
         
     | 
| 
      
 102 
     | 
    
         
            +
                    allowNull: false,
         
     | 
| 
      
 103 
     | 
    
         
            +
                    defaultValue: Sequelize.literal(
         
     | 
| 
      
 104 
     | 
    
         
            +
                      'CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3)',
         
     | 
| 
      
 105 
     | 
    
         
            +
                    ),
         
     | 
| 
      
 106 
     | 
    
         
            +
                    type: Sequelize.DATE,
         
     | 
| 
      
 107 
     | 
    
         
            +
                  },
         
     | 
| 
      
 108 
     | 
    
         
            +
                  UpdatedById: {
         
     | 
| 
      
 109 
     | 
    
         
            +
                    type: Sequelize.INTEGER,
         
     | 
| 
      
 110 
     | 
    
         
            +
                    allowNull: true,
         
     | 
| 
      
 111 
     | 
    
         
            +
                    references: {
         
     | 
| 
      
 112 
     | 
    
         
            +
                      model: 'sso_User',
         
     | 
| 
      
 113 
     | 
    
         
            +
                      key: 'UserId',
         
     | 
| 
      
 114 
     | 
    
         
            +
                    },
         
     | 
| 
      
 115 
     | 
    
         
            +
                    onDelete: 'CASCADE',
         
     | 
| 
      
 116 
     | 
    
         
            +
                    onUpdate: 'CASCADE',
         
     | 
| 
      
 117 
     | 
    
         
            +
                  },
         
     | 
| 
      
 118 
     | 
    
         
            +
                });
         
     | 
| 
      
 119 
     | 
    
         
            +
              },
         
     | 
| 
      
 120 
     | 
    
         
            +
             
     | 
| 
      
 121 
     | 
    
         
            +
              async down(queryInterface) {
         
     | 
| 
      
 122 
     | 
    
         
            +
                await queryInterface.dropTable('sso_User');
         
     | 
| 
      
 123 
     | 
    
         
            +
              },
         
     | 
| 
      
 124 
     | 
    
         
            +
            };
         
     | 
| 
         @@ -1,85 +1,85 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            'use strict';
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
             
     | 
| 
       4 
     | 
    
         
            -
            module.exports = {
         
     | 
| 
       5 
     | 
    
         
            -
                up: async (queryInterface, Sequelize) => {
         
     | 
| 
       6 
     | 
    
         
            -
                    queryInterface.createTable('sso_UserGroup', {
         
     | 
| 
       7 
     | 
    
         
            -
                        UserGroupId: {
         
     | 
| 
       8 
     | 
    
         
            -
                            primaryKey: true,
         
     | 
| 
       9 
     | 
    
         
            -
                            type: Sequelize.INTEGER,
         
     | 
| 
       10 
     | 
    
         
            -
                            autoIncrement: true,
         
     | 
| 
       11 
     | 
    
         
            -
                            allowNull: false,
         
     | 
| 
       12 
     | 
    
         
            -
                        },
         
     | 
| 
       13 
     | 
    
         
            -
                        UserId: {
         
     | 
| 
       14 
     | 
    
         
            -
                            type: Sequelize.INTEGER,
         
     | 
| 
       15 
     | 
    
         
            -
                            allowNull: true,
         
     | 
| 
       16 
     | 
    
         
            -
                            references: {
         
     | 
| 
       17 
     | 
    
         
            -
                                model: 'sso_User',
         
     | 
| 
       18 
     | 
    
         
            -
                                key: 'UserId',
         
     | 
| 
       19 
     | 
    
         
            -
                            },
         
     | 
| 
       20 
     | 
    
         
            -
                            onDelete: 'CASCADE',
         
     | 
| 
       21 
     | 
    
         
            -
                            onUpdate: 'CASCADE',
         
     | 
| 
       22 
     | 
    
         
            -
                        },
         
     | 
| 
       23 
     | 
    
         
            -
                        GroupCode: {
         
     | 
| 
       24 
     | 
    
         
            -
                            type: Sequelize.STRING(10),
         
     | 
| 
       25 
     | 
    
         
            -
                            allowNull: false,
         
     | 
| 
       26 
     | 
    
         
            -
                            references: {
         
     | 
| 
       27 
     | 
    
         
            -
                                model: 'sso_Group',
         
     | 
| 
       28 
     | 
    
         
            -
                                key: 'GroupCode',
         
     | 
| 
       29 
     | 
    
         
            -
                            },
         
     | 
| 
       30 
     | 
    
         
            -
                            onDelete: 'CASCADE',
         
     | 
| 
       31 
     | 
    
         
            -
                            onUpdate: 'CASCADE',
         
     | 
| 
       32 
     | 
    
         
            -
                        },
         
     | 
| 
       33 
     | 
    
         
            -
                        InheritGroupPrivilegeYN: {
         
     | 
| 
       34 
     | 
    
         
            -
                            type: Sequelize.CHAR(1),
         
     | 
| 
       35 
     | 
    
         
            -
                            allowNull: false,
         
     | 
| 
       36 
     | 
    
         
            -
                            defaultValue: 'Y',
         
     | 
| 
       37 
     | 
    
         
            -
                        },
         
     | 
| 
       38 
     | 
    
         
            -
                        InheritGroupSystemAccessYN: {
         
     | 
| 
       39 
     | 
    
         
            -
                            type: Sequelize.CHAR(1),
         
     | 
| 
       40 
     | 
    
         
            -
                            allowNull: false,
         
     | 
| 
       41 
     | 
    
         
            -
                            defaultValue: 'Y',
         
     | 
| 
       42 
     | 
    
         
            -
                        },
         
     | 
| 
       43 
     | 
    
         
            -
                        Status: {
         
     | 
| 
       44 
     | 
    
         
            -
                            type: Sequelize.CHAR(10),
         
     | 
| 
       45 
     | 
    
         
            -
                            allowNull: false,
         
     | 
| 
       46 
     | 
    
         
            -
                            defaultValue: 'Active',
         
     | 
| 
       47 
     | 
    
         
            -
                        },
         
     | 
| 
       48 
     | 
    
         
            -
                        CreatedAt: {
         
     | 
| 
       49 
     | 
    
         
            -
                            allowNull: false,
         
     | 
| 
       50 
     | 
    
         
            -
                            defaultValue: Sequelize.literal('CURRENT_TIMESTAMP(3)'),
         
     | 
| 
       51 
     | 
    
         
            -
                            type: Sequelize.DATE,
         
     | 
| 
       52 
     | 
    
         
            -
                        },
         
     | 
| 
       53 
     | 
    
         
            -
                        CreatedById: {
         
     | 
| 
       54 
     | 
    
         
            -
                            type: Sequelize.INTEGER,
         
     | 
| 
       55 
     | 
    
         
            -
                            allowNull: true,
         
     | 
| 
       56 
     | 
    
         
            -
                            references: {
         
     | 
| 
       57 
     | 
    
         
            -
                                model: 'sso_User',
         
     | 
| 
       58 
     | 
    
         
            -
                                key: 'UserId',
         
     | 
| 
       59 
     | 
    
         
            -
                            },
         
     | 
| 
       60 
     | 
    
         
            -
                            onDelete: 'CASCADE',
         
     | 
| 
       61 
     | 
    
         
            -
                            onUpdate: 'CASCADE',
         
     | 
| 
       62 
     | 
    
         
            -
                        },
         
     | 
| 
       63 
     | 
    
         
            -
                        UpdatedAt: {
         
     | 
| 
       64 
     | 
    
         
            -
                            allowNull: false,
         
     | 
| 
       65 
     | 
    
         
            -
                            defaultValue: Sequelize.literal('CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3)'),
         
     | 
| 
       66 
     | 
    
         
            -
                            type: Sequelize.DATE,
         
     | 
| 
       67 
     | 
    
         
            -
                        },
         
     | 
| 
       68 
     | 
    
         
            -
                        UpdatedById: {
         
     | 
| 
       69 
     | 
    
         
            -
                            type: Sequelize.INTEGER,
         
     | 
| 
       70 
     | 
    
         
            -
                            allowNull: true,
         
     | 
| 
       71 
     | 
    
         
            -
                            references: {
         
     | 
| 
       72 
     | 
    
         
            -
                                model: 'sso_User',
         
     | 
| 
       73 
     | 
    
         
            -
                                key: 'UserId',
         
     | 
| 
       74 
     | 
    
         
            -
                            },
         
     | 
| 
       75 
     | 
    
         
            -
                            onDelete: 'CASCADE',
         
     | 
| 
       76 
     | 
    
         
            -
                            onUpdate: 'CASCADE',
         
     | 
| 
       77 
     | 
    
         
            -
                        },
         
     | 
| 
       78 
     | 
    
         
            -
                    });
         
     | 
| 
       79 
     | 
    
         
            -
             
     | 
| 
       80 
     | 
    
         
            -
                },
         
     | 
| 
       81 
     | 
    
         
            -
             
     | 
| 
       82 
     | 
    
         
            -
                down: async (queryInterface) => {
         
     | 
| 
       83 
     | 
    
         
            -
                    await queryInterface.dropTable('sso_UserGroup');
         
     | 
| 
       84 
     | 
    
         
            -
                },
         
     | 
| 
       85 
     | 
    
         
            -
            };
         
     | 
| 
      
 1 
     | 
    
         
            +
            'use strict';
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            module.exports = {
         
     | 
| 
      
 5 
     | 
    
         
            +
                up: async (queryInterface, Sequelize) => {
         
     | 
| 
      
 6 
     | 
    
         
            +
                    queryInterface.createTable('sso_UserGroup', {
         
     | 
| 
      
 7 
     | 
    
         
            +
                        UserGroupId: {
         
     | 
| 
      
 8 
     | 
    
         
            +
                            primaryKey: true,
         
     | 
| 
      
 9 
     | 
    
         
            +
                            type: Sequelize.INTEGER,
         
     | 
| 
      
 10 
     | 
    
         
            +
                            autoIncrement: true,
         
     | 
| 
      
 11 
     | 
    
         
            +
                            allowNull: false,
         
     | 
| 
      
 12 
     | 
    
         
            +
                        },
         
     | 
| 
      
 13 
     | 
    
         
            +
                        UserId: {
         
     | 
| 
      
 14 
     | 
    
         
            +
                            type: Sequelize.INTEGER,
         
     | 
| 
      
 15 
     | 
    
         
            +
                            allowNull: true,
         
     | 
| 
      
 16 
     | 
    
         
            +
                            references: {
         
     | 
| 
      
 17 
     | 
    
         
            +
                                model: 'sso_User',
         
     | 
| 
      
 18 
     | 
    
         
            +
                                key: 'UserId',
         
     | 
| 
      
 19 
     | 
    
         
            +
                            },
         
     | 
| 
      
 20 
     | 
    
         
            +
                            onDelete: 'CASCADE',
         
     | 
| 
      
 21 
     | 
    
         
            +
                            onUpdate: 'CASCADE',
         
     | 
| 
      
 22 
     | 
    
         
            +
                        },
         
     | 
| 
      
 23 
     | 
    
         
            +
                        GroupCode: {
         
     | 
| 
      
 24 
     | 
    
         
            +
                            type: Sequelize.STRING(10),
         
     | 
| 
      
 25 
     | 
    
         
            +
                            allowNull: false,
         
     | 
| 
      
 26 
     | 
    
         
            +
                            references: {
         
     | 
| 
      
 27 
     | 
    
         
            +
                                model: 'sso_Group',
         
     | 
| 
      
 28 
     | 
    
         
            +
                                key: 'GroupCode',
         
     | 
| 
      
 29 
     | 
    
         
            +
                            },
         
     | 
| 
      
 30 
     | 
    
         
            +
                            onDelete: 'CASCADE',
         
     | 
| 
      
 31 
     | 
    
         
            +
                            onUpdate: 'CASCADE',
         
     | 
| 
      
 32 
     | 
    
         
            +
                        },
         
     | 
| 
      
 33 
     | 
    
         
            +
                        InheritGroupPrivilegeYN: {
         
     | 
| 
      
 34 
     | 
    
         
            +
                            type: Sequelize.CHAR(1),
         
     | 
| 
      
 35 
     | 
    
         
            +
                            allowNull: false,
         
     | 
| 
      
 36 
     | 
    
         
            +
                            defaultValue: 'Y',
         
     | 
| 
      
 37 
     | 
    
         
            +
                        },
         
     | 
| 
      
 38 
     | 
    
         
            +
                        InheritGroupSystemAccessYN: {
         
     | 
| 
      
 39 
     | 
    
         
            +
                            type: Sequelize.CHAR(1),
         
     | 
| 
      
 40 
     | 
    
         
            +
                            allowNull: false,
         
     | 
| 
      
 41 
     | 
    
         
            +
                            defaultValue: 'Y',
         
     | 
| 
      
 42 
     | 
    
         
            +
                        },
         
     | 
| 
      
 43 
     | 
    
         
            +
                        Status: {
         
     | 
| 
      
 44 
     | 
    
         
            +
                            type: Sequelize.CHAR(10),
         
     | 
| 
      
 45 
     | 
    
         
            +
                            allowNull: false,
         
     | 
| 
      
 46 
     | 
    
         
            +
                            defaultValue: 'Active',
         
     | 
| 
      
 47 
     | 
    
         
            +
                        },
         
     | 
| 
      
 48 
     | 
    
         
            +
                        CreatedAt: {
         
     | 
| 
      
 49 
     | 
    
         
            +
                            allowNull: false,
         
     | 
| 
      
 50 
     | 
    
         
            +
                            defaultValue: Sequelize.literal('CURRENT_TIMESTAMP(3)'),
         
     | 
| 
      
 51 
     | 
    
         
            +
                            type: Sequelize.DATE,
         
     | 
| 
      
 52 
     | 
    
         
            +
                        },
         
     | 
| 
      
 53 
     | 
    
         
            +
                        CreatedById: {
         
     | 
| 
      
 54 
     | 
    
         
            +
                            type: Sequelize.INTEGER,
         
     | 
| 
      
 55 
     | 
    
         
            +
                            allowNull: true,
         
     | 
| 
      
 56 
     | 
    
         
            +
                            references: {
         
     | 
| 
      
 57 
     | 
    
         
            +
                                model: 'sso_User',
         
     | 
| 
      
 58 
     | 
    
         
            +
                                key: 'UserId',
         
     | 
| 
      
 59 
     | 
    
         
            +
                            },
         
     | 
| 
      
 60 
     | 
    
         
            +
                            onDelete: 'CASCADE',
         
     | 
| 
      
 61 
     | 
    
         
            +
                            onUpdate: 'CASCADE',
         
     | 
| 
      
 62 
     | 
    
         
            +
                        },
         
     | 
| 
      
 63 
     | 
    
         
            +
                        UpdatedAt: {
         
     | 
| 
      
 64 
     | 
    
         
            +
                            allowNull: false,
         
     | 
| 
      
 65 
     | 
    
         
            +
                            defaultValue: Sequelize.literal('CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3)'),
         
     | 
| 
      
 66 
     | 
    
         
            +
                            type: Sequelize.DATE,
         
     | 
| 
      
 67 
     | 
    
         
            +
                        },
         
     | 
| 
      
 68 
     | 
    
         
            +
                        UpdatedById: {
         
     | 
| 
      
 69 
     | 
    
         
            +
                            type: Sequelize.INTEGER,
         
     | 
| 
      
 70 
     | 
    
         
            +
                            allowNull: true,
         
     | 
| 
      
 71 
     | 
    
         
            +
                            references: {
         
     | 
| 
      
 72 
     | 
    
         
            +
                                model: 'sso_User',
         
     | 
| 
      
 73 
     | 
    
         
            +
                                key: 'UserId',
         
     | 
| 
      
 74 
     | 
    
         
            +
                            },
         
     | 
| 
      
 75 
     | 
    
         
            +
                            onDelete: 'CASCADE',
         
     | 
| 
      
 76 
     | 
    
         
            +
                            onUpdate: 'CASCADE',
         
     | 
| 
      
 77 
     | 
    
         
            +
                        },
         
     | 
| 
      
 78 
     | 
    
         
            +
                    });
         
     | 
| 
      
 79 
     | 
    
         
            +
             
     | 
| 
      
 80 
     | 
    
         
            +
                },
         
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
                down: async (queryInterface) => {
         
     | 
| 
      
 83 
     | 
    
         
            +
                    await queryInterface.dropTable('sso_UserGroup');
         
     | 
| 
      
 84 
     | 
    
         
            +
                },
         
     | 
| 
      
 85 
     | 
    
         
            +
            };
         
     | 
| 
         @@ -1,55 +1,55 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            'use strict';
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
            module.exports = {
         
     | 
| 
       4 
     | 
    
         
            -
              up: async (queryInterface, Sequelize) => {
         
     | 
| 
       5 
     | 
    
         
            -
                queryInterface.createTable('sso_UserUserGroup', {
         
     | 
| 
       6 
     | 
    
         
            -
                    UserId: {
         
     | 
| 
       7 
     | 
    
         
            -
                        primaryKey: true,
         
     | 
| 
       8 
     | 
    
         
            -
                        type: Sequelize.INTEGER,
         
     | 
| 
       9 
     | 
    
         
            -
                        allowNull: false,
         
     | 
| 
       10 
     | 
    
         
            -
                        references: {
         
     | 
| 
       11 
     | 
    
         
            -
                            model: 'sso_User',
         
     | 
| 
       12 
     | 
    
         
            -
                            key: 'id',
         
     | 
| 
       13 
     | 
    
         
            -
                        },
         
     | 
| 
       14 
     | 
    
         
            -
                        onDelete: 'CASCADE',
         
     | 
| 
       15 
     | 
    
         
            -
                        onUpdate: 'CASCADE',
         
     | 
| 
       16 
     | 
    
         
            -
                    },
         
     | 
| 
       17 
     | 
    
         
            -
                    GroupCode: {
         
     | 
| 
       18 
     | 
    
         
            -
                        primaryKey: true,
         
     | 
| 
       19 
     | 
    
         
            -
                        type: Sequelize.STRING(191),
         
     | 
| 
       20 
     | 
    
         
            -
                        allowNull: false,
         
     | 
| 
       21 
     | 
    
         
            -
                        references: {
         
     | 
| 
       22 
     | 
    
         
            -
                            model: 'sso_usergroup',
         
     | 
| 
       23 
     | 
    
         
            -
                            key: 'GroupCode',
         
     | 
| 
       24 
     | 
    
         
            -
                        },
         
     | 
| 
       25 
     | 
    
         
            -
                        onDelete: 'CASCADE',
         
     | 
| 
       26 
     | 
    
         
            -
                        onUpdate: 'CASCADE',
         
     | 
| 
       27 
     | 
    
         
            -
                    },
         
     | 
| 
       28 
     | 
    
         
            -
                    SystemId: {
         
     | 
| 
       29 
     | 
    
         
            -
                        type: Sequelize.INTEGER,
         
     | 
| 
       30 
     | 
    
         
            -
                        allowNull: true,
         
     | 
| 
       31 
     | 
    
         
            -
                        references: {
         
     | 
| 
       32 
     | 
    
         
            -
                            model: 'sso_systems',
         
     | 
| 
       33 
     | 
    
         
            -
                            key: 'id',
         
     | 
| 
       34 
     | 
    
         
            -
                        },
         
     | 
| 
       35 
     | 
    
         
            -
                        onDelete: 'CASCADE',
         
     | 
| 
       36 
     | 
    
         
            -
                        onUpdate: 'CASCADE',
         
     | 
| 
       37 
     | 
    
         
            -
                    },
         
     | 
| 
       38 
     | 
    
         
            -
                    CreatedAt: {
         
     | 
| 
       39 
     | 
    
         
            -
                        allowNull: false,
         
     | 
| 
       40 
     | 
    
         
            -
                        defaultValue: Sequelize.literal('CURRENT_TIMESTAMP(3)'),
         
     | 
| 
       41 
     | 
    
         
            -
                        type: Sequelize.DATE,
         
     | 
| 
       42 
     | 
    
         
            -
                    },
         
     | 
| 
       43 
     | 
    
         
            -
                    UpdatedAt: {
         
     | 
| 
       44 
     | 
    
         
            -
                        allowNull: false,
         
     | 
| 
       45 
     | 
    
         
            -
                        defaultValue: Sequelize.literal('CURRENT_TIMESTAMP(3)'),
         
     | 
| 
       46 
     | 
    
         
            -
                        type: Sequelize.DATE,
         
     | 
| 
       47 
     | 
    
         
            -
                    },
         
     | 
| 
       48 
     | 
    
         
            -
                });
         
     | 
| 
       49 
     | 
    
         
            -
             
     | 
| 
       50 
     | 
    
         
            -
              },
         
     | 
| 
       51 
     | 
    
         
            -
             
     | 
| 
       52 
     | 
    
         
            -
              down: async (queryInterface) => {
         
     | 
| 
       53 
     | 
    
         
            -
                await queryInterface.dropTable('sso_UserUserGroup');
         
     | 
| 
       54 
     | 
    
         
            -
              },
         
     | 
| 
       55 
     | 
    
         
            -
            };
         
     | 
| 
      
 1 
     | 
    
         
            +
            'use strict';
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            module.exports = {
         
     | 
| 
      
 4 
     | 
    
         
            +
              up: async (queryInterface, Sequelize) => {
         
     | 
| 
      
 5 
     | 
    
         
            +
                queryInterface.createTable('sso_UserUserGroup', {
         
     | 
| 
      
 6 
     | 
    
         
            +
                    UserId: {
         
     | 
| 
      
 7 
     | 
    
         
            +
                        primaryKey: true,
         
     | 
| 
      
 8 
     | 
    
         
            +
                        type: Sequelize.INTEGER,
         
     | 
| 
      
 9 
     | 
    
         
            +
                        allowNull: false,
         
     | 
| 
      
 10 
     | 
    
         
            +
                        references: {
         
     | 
| 
      
 11 
     | 
    
         
            +
                            model: 'sso_User',
         
     | 
| 
      
 12 
     | 
    
         
            +
                            key: 'id',
         
     | 
| 
      
 13 
     | 
    
         
            +
                        },
         
     | 
| 
      
 14 
     | 
    
         
            +
                        onDelete: 'CASCADE',
         
     | 
| 
      
 15 
     | 
    
         
            +
                        onUpdate: 'CASCADE',
         
     | 
| 
      
 16 
     | 
    
         
            +
                    },
         
     | 
| 
      
 17 
     | 
    
         
            +
                    GroupCode: {
         
     | 
| 
      
 18 
     | 
    
         
            +
                        primaryKey: true,
         
     | 
| 
      
 19 
     | 
    
         
            +
                        type: Sequelize.STRING(191),
         
     | 
| 
      
 20 
     | 
    
         
            +
                        allowNull: false,
         
     | 
| 
      
 21 
     | 
    
         
            +
                        references: {
         
     | 
| 
      
 22 
     | 
    
         
            +
                            model: 'sso_usergroup',
         
     | 
| 
      
 23 
     | 
    
         
            +
                            key: 'GroupCode',
         
     | 
| 
      
 24 
     | 
    
         
            +
                        },
         
     | 
| 
      
 25 
     | 
    
         
            +
                        onDelete: 'CASCADE',
         
     | 
| 
      
 26 
     | 
    
         
            +
                        onUpdate: 'CASCADE',
         
     | 
| 
      
 27 
     | 
    
         
            +
                    },
         
     | 
| 
      
 28 
     | 
    
         
            +
                    SystemId: {
         
     | 
| 
      
 29 
     | 
    
         
            +
                        type: Sequelize.INTEGER,
         
     | 
| 
      
 30 
     | 
    
         
            +
                        allowNull: true,
         
     | 
| 
      
 31 
     | 
    
         
            +
                        references: {
         
     | 
| 
      
 32 
     | 
    
         
            +
                            model: 'sso_systems',
         
     | 
| 
      
 33 
     | 
    
         
            +
                            key: 'id',
         
     | 
| 
      
 34 
     | 
    
         
            +
                        },
         
     | 
| 
      
 35 
     | 
    
         
            +
                        onDelete: 'CASCADE',
         
     | 
| 
      
 36 
     | 
    
         
            +
                        onUpdate: 'CASCADE',
         
     | 
| 
      
 37 
     | 
    
         
            +
                    },
         
     | 
| 
      
 38 
     | 
    
         
            +
                    CreatedAt: {
         
     | 
| 
      
 39 
     | 
    
         
            +
                        allowNull: false,
         
     | 
| 
      
 40 
     | 
    
         
            +
                        defaultValue: Sequelize.literal('CURRENT_TIMESTAMP(3)'),
         
     | 
| 
      
 41 
     | 
    
         
            +
                        type: Sequelize.DATE,
         
     | 
| 
      
 42 
     | 
    
         
            +
                    },
         
     | 
| 
      
 43 
     | 
    
         
            +
                    UpdatedAt: {
         
     | 
| 
      
 44 
     | 
    
         
            +
                        allowNull: false,
         
     | 
| 
      
 45 
     | 
    
         
            +
                        defaultValue: Sequelize.literal('CURRENT_TIMESTAMP(3)'),
         
     | 
| 
      
 46 
     | 
    
         
            +
                        type: Sequelize.DATE,
         
     | 
| 
      
 47 
     | 
    
         
            +
                    },
         
     | 
| 
      
 48 
     | 
    
         
            +
                });
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
              },
         
     | 
| 
      
 51 
     | 
    
         
            +
             
     | 
| 
      
 52 
     | 
    
         
            +
              down: async (queryInterface) => {
         
     | 
| 
      
 53 
     | 
    
         
            +
                await queryInterface.dropTable('sso_UserUserGroup');
         
     | 
| 
      
 54 
     | 
    
         
            +
              },
         
     | 
| 
      
 55 
     | 
    
         
            +
            };
         
     |