Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. databaseChangeLog:
  2.   - changeSet:
  3.       id: SSO_001
  4.       author: unknown
  5.       dbms: oracle, hsqldb
  6.       changes:
  7.         - createTable:
  8.             remarks: "SSO Account Link initial table"
  9.             tableName: Account_link
  10.             columns:
  11.               - column:
  12.                   name: internal_id
  13.                   type: number(20)
  14.                   constraints:
  15.                     nullable: false
  16.               - column:
  17.                   name: id
  18.                   type: raw(16)
  19.                   constraints:
  20.                     nullable: false
  21.               - column:
  22.                   name: program_name
  23.                   type: nvarchar2(255)
  24.                   constraints:
  25.                     nullable: false
  26.               - column:
  27.                   name: local_username
  28.                   type: nvarchar2(255)
  29.                   constraints:
  30.                     nullable: false                        
  31.               - column:
  32.                   name: user_type
  33.                   type: varchar2(30)
  34.                   constraints:
  35.                     nullable: false
  36.               - column:
  37.                   name: sso_username
  38.                   type: nvarchar2(255)
  39.                   constraints:
  40.                     nullable: false
  41.               - column:
  42.                   name: sso_id_provider
  43.                   type: nvarchar2(255)
  44.                   constraints:
  45.                     nullable: false      
  46.               - column:
  47.                   name: created_by
  48.                   type: varchar(30)
  49.                   constraints:
  50.                     nullable: false                                                    
  51.               - column:
  52.                   name: created_date
  53.                   type: TIMESTAMP WITH TIME ZONE
  54.                   constraints:
  55.                     nullable: false
  56.               - column:
  57.                   name: last_modified_by
  58.                   type: varchar(30)
  59.                   constraints:
  60.                     nullable: false                                            
  61.               - column:
  62.                   name: last_modified_date
  63.                   type: TIMESTAMP WITH TIME ZONE
  64.                   constraints:
  65.                     nullable: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement