You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
5.3 KiB

1 year ago
  1. USE [FastMoneyPro_Remit]
  2. GO
  3. CREATE TABLE [dbo].[customerAgreeDocumentTbl]
  4. (
  5. [rowId] [int] NOT NULL IDENTITY(1, 1),
  6. [PdfName] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
  7. [AgreePdfPAth] [nvarchar] (150) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
  8. [createBy] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
  9. [createDate] [datetime] NULL,
  10. [isActive] [char] (1) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
  11. [targetObj] [nvarchar] (10) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
  12. ) ON [PRIMARY]
  13. GO
  14. ALTER TABLE [dbo].[customerAgreeDocumentTbl] ADD CONSTRAINT [PK_customerAgreeDocumentTbl] PRIMARY KEY CLUSTERED ([rowId]) ON [PRIMARY]
  15. GO
  16. SET IDENTITY_INSERT [dbo].[customerAgreeDocumentTbl] ON
  17. INSERT [dbo].[customerAgreeDocumentTbl] ([rowId], [PdfName], [AgreePdfPAth], [createBy], [createDate], [isActive], [targetObj]) VALUES (1, N'PrivacyPolicyProcess', N'http://gmeuat.gmeremit.com:5022/Document\\AgreeDocument\\PrivacyPolicyProcess.pdf', N'Justin', CAST(N'2020-01-12T16:28:26.977' AS DateTime), N'Y', N'STAGING')
  18. INSERT [dbo].[customerAgreeDocumentTbl] ([rowId], [PdfName], [AgreePdfPAth], [createBy], [createDate], [isActive], [targetObj]) VALUES (2, N'PersonalInfoUseAgree', N'http://gmeuat.gmeremit.com:5022/Document\\AgreeDocument\\PersonalInfoUseAgree.pdf', N'Justin', CAST(N'2020-01-12T16:28:26.977' AS DateTime), N'Y', N'STAGING')
  19. INSERT [dbo].[customerAgreeDocumentTbl] ([rowId], [PdfName], [AgreePdfPAth], [createBy], [createDate], [isActive], [targetObj]) VALUES (3, N'OverseasSendMoney', N'http://gmeuat.gmeremit.com:5022/Document\\AgreeDocument\\OverseasSendMoney.pdf', N'Justin', CAST(N'2020-01-12T16:28:26.977' AS DateTime), N'Y', N'STAGING')
  20. INSERT [dbo].[customerAgreeDocumentTbl] ([rowId], [PdfName], [AgreePdfPAth], [createBy], [createDate], [isActive], [targetObj]) VALUES (4, N'IllegalTran', N'http://gmeuat.gmeremit.com:5022/Document\\AgreeDocument\\IllegalTran.pdf', N'Justin', CAST(N'2020-01-12T16:28:26.977' AS DateTime), N'Y', N'STAGING')
  21. INSERT [dbo].[customerAgreeDocumentTbl] ([rowId], [PdfName], [AgreePdfPAth], [createBy], [createDate], [isActive], [targetObj]) VALUES (5, N'OpenbankingService', N'http://gmeuat.gmeremit.com:5022/Document\\AgreeDocument\\OpenbankingService.pdf', N'Justin', CAST(N'2020-01-12T16:28:26.977' AS DateTime), N'Y', N'STAGING')
  22. INSERT [dbo].[customerAgreeDocumentTbl] ([rowId], [PdfName], [AgreePdfPAth], [createBy], [createDate], [isActive], [targetObj]) VALUES (6, N'ElectronicFinancial', N'http://gmeuat.gmeremit.com:5022/Document\\AgreeDocument\\ElectronicFinancial.pdf', N'Justin', CAST(N'2020-01-12T16:28:26.977' AS DateTime), N'Y', N'STAGING')
  23. SET IDENTITY_INSERT [dbo].[customerAgreeDocumentTbl] OFF