CREATE TABLE [dbo].[CoExportMappingGLAccounts]
(
[ExportMappingGLAccountID] [int] NOT NULL IDENTITY(1, 1),
[AccountID] [int] NOT NULL,
[ExternalAccountID] [int] NOT NULL,
[DestinationApplicationID] [int] NULL,
[CreateDate] [datetime] NOT NULL CONSTRAINT [DF_CoExportMappingGLAccounts_CreateDate] DEFAULT (getdate())
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[CoExportMappingGLAccounts] ADD CONSTRAINT [PK__CoExport__9DD52E292EA5EF61] PRIMARY KEY CLUSTERED ([ExportMappingGLAccountID]) ON [PRIMARY]
GO