Tables [dbo].[GLAccountDepts]
PropertyValue
HeapTrue
Row Count (~)0
Created12:57:21 AM Thursday, March 21, 2019
Last Modified12:57:21 AM Thursday, March 21, 2019
NameData TypeMax Length (Bytes)Allow NullsIdentity
AcctDeptIDint4
False
1 - 1
AccountIDint4
True
DeptIDint4
True
CREATE TABLE [dbo].[GLAccountDepts]
(
[AcctDeptID] [int] NOT NULL IDENTITY(1, 1),
[AccountID] [int] NULL,
[DeptID] [int] NULL
) ON [PRIMARY]
GO