[dbo].[AccountingCustomer]
CREATE TABLE [dbo].[AccountingCustomer]
(
[AccountingCustomerId] [int] NOT NULL IDENTITY(1, 1),
[Name] [nvarchar] (256) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[Deleted] [bit] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountingCustomer] ADD CONSTRAINT [PK_AccountingCustomer] PRIMARY KEY CLUSTERED ([AccountingCustomerId]) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[AccountingCustomer] TO [MssExec]
GRANT INSERT ON [dbo].[AccountingCustomer] TO [MssExec]
GRANT DELETE ON [dbo].[AccountingCustomer] TO [MssExec]
GRANT UPDATE ON [dbo].[AccountingCustomer] TO [MssExec]
GO