
[dbo].[AccountingAccountType]
CREATE TABLE [dbo].[AccountingAccountType]
(
[AccountingAccountTypeId] [int] NOT NULL IDENTITY(1, 1),
[Description] [nvarchar] (16) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountingAccountType] ADD CONSTRAINT [PK_AccountingAccountType] PRIMARY KEY CLUSTERED ([AccountingAccountTypeId]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[AccountingAccountType] ADD CONSTRAINT [IX_AccountingAccountType_Description] UNIQUE NONCLUSTERED ([Description]) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[AccountingAccountType] TO [MssExec]
GRANT INSERT ON [dbo].[AccountingAccountType] TO [MssExec]
GRANT DELETE ON [dbo].[AccountingAccountType] TO [MssExec]
GRANT UPDATE ON [dbo].[AccountingAccountType] TO [MssExec]
GO