Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. ------------------
  2. -- Table Schema --
  3. ------------------
  4.  
  5. /*
  6. VCPay_Integrity_Check
  7.  
  8. Column Type Nullable? Default
  9. vcpay_integrity_check_pk int identity No NULL
  10. vcpay_integrity_check_id int No NULL
  11. vcpay_autopay_batch_fk int No NULL
  12. vcpay_autopay_batch_record_fk int No (0)
  13. checkout_payment_account_fk int No (0)
  14. payment_account_owner_fk int No (0)
  15. additional_information nvarchar(1000) Yes NULL
  16. status tinyint No (0)
  17. notes nvarchar(max) Yes NULL
  18. input_date smalldatetime
  19. input_user sysname
  20. update_date smalldatetime
  21. update_user sysname
  22.  
  23.  
  24. zg_VCPay_Integrity_Check
  25.  
  26. Column Type Nullable? Default
  27. id int No NULL
  28. description nvarchar(1000) No NULL
  29. category smallint No (0)
  30. severity tinyint No (0)
  31. sort_key int Yes (100)
  32. input_date smalldatetime
  33. input_user sysname
  34. update_date smalldatetime
  35. update_user sysname
  36.  
  37. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement