CREATE TABLE [dbo].[slAccount] (
[slAccount_dcEmploye_ID] [int] NOT NULL ,
[slAccount_ID] [int] IDENTITY (1, 1) NOT NULL ,
[slAccount_slCard_ID] [int] NOT NULL
) ON [PRIMARY]
GO
CREATE TABLE [dbo].[slAccountItem] (
[slAccountItem_ID] [int] IDENTITY (1, 1) NOT NULL ,
[slAccountItem_total_real] [float] NOT NULL ,
[slAccountItem_slInOut_ID] [int] NULL ,
[slAccountItem_slAccount_ID] [int] NOT NULL ,
) ON [PRIMARY]
GO
CREATE TABLE [dbo].[slCard] (
[slCard_ID] [int] IDENTITY (1, 1) NOT NULL ,
[slCard_date] [datetime] NOT NULL
) ON [PRIMARY]
GO |