remove extra .sql file, same as one included in src directory
This commit is contained in:
@@ -1,51 +0,0 @@
|
||||
USE [CreditsAndDebits]
|
||||
CREATE TABLE [Credits](
|
||||
[CreditID] [int] IDENTITY NOT NULL,
|
||||
[CreditAmount] [float] NOT NULL,
|
||||
CONSTRAINT [PK_CreditID] PRIMARY KEY CLUSTERED
|
||||
(
|
||||
[CreditID] ASC
|
||||
) ON [PRIMARY]
|
||||
) ON [PRIMARY]
|
||||
GO
|
||||
|
||||
|
||||
USE [CreditsAndDebits]
|
||||
GO
|
||||
CREATE TABLE [Debits](
|
||||
[DebitID] [int] IDENTITY NOT NULL,
|
||||
[DebitAmount] [float] NOT NULL,
|
||||
CONSTRAINT [PK_DebitID] PRIMARY KEY CLUSTERED
|
||||
(
|
||||
[DebitID] ASC
|
||||
) ON [PRIMARY]
|
||||
) ON [PRIMARY]
|
||||
GO
|
||||
|
||||
|
||||
|
||||
USE [Credits]
|
||||
GO
|
||||
CREATE TABLE [Credits](
|
||||
[CreditID] [int] IDENTITY NOT NULL,
|
||||
[CreditAmount] [float] NOT NULL,
|
||||
CONSTRAINT [PK_CreditID] PRIMARY KEY CLUSTERED
|
||||
(
|
||||
[CreditID] ASC
|
||||
) ON [PRIMARY]
|
||||
) ON [PRIMARY]
|
||||
GO
|
||||
|
||||
|
||||
USE [Debits]
|
||||
GO
|
||||
CREATE TABLE [Debits](
|
||||
[DebitID] [int] IDENTITY NOT NULL,
|
||||
[DebitAmount] [float] NOT NULL,
|
||||
CONSTRAINT [PK_DebitID] PRIMARY KEY CLUSTERED
|
||||
(
|
||||
[DebitID] ASC
|
||||
) ON [PRIMARY]
|
||||
) ON [PRIMARY]
|
||||
GO
|
||||
|
||||
Reference in New Issue
Block a user