diff --git a/examples/Spring/Spring.TxQuickStart/test/Spring/Spring.TxQuickStart.Tests/TxQuickStart/CreditsDebitsSchema.sql b/examples/Spring/Spring.TxQuickStart/test/Spring/Spring.TxQuickStart.Tests/TxQuickStart/CreditsDebitsSchema.sql deleted file mode 100644 index 6566603a..00000000 --- a/examples/Spring/Spring.TxQuickStart/test/Spring/Spring.TxQuickStart.Tests/TxQuickStart/CreditsDebitsSchema.sql +++ /dev/null @@ -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 -