Skip to content

Commit 2d0ffd8

Browse files
committed
Revert "Add MQ Schema tables"
1 parent babc3a8 commit 2d0ffd8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+395
-1236
lines changed

TestDatabases/SQLServer/EfrpgTest (manually created).sql

Lines changed: 382 additions & 416 deletions
Large diffs are not rendered by default.
-2.87 KB
Binary file not shown.
0 Bytes
Binary file not shown.

TestDatabases/SQLServer/EfrpgTest_Synonyms.sql

Lines changed: 13 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
USE [master]
22
GO
3-
/****** Object: Database [EfrpgTest_Synonyms] Script Date: 26/05/22 21:57:11 ******/
3+
/****** Object: Database [EfrpgTest_Synonyms] Script Date: 12/01/22 23:26:21 ******/
44
CREATE DATABASE [EfrpgTest_Synonyms]
55
CONTAINMENT = NONE
66
ON PRIMARY
@@ -79,31 +79,30 @@ ALTER DATABASE [EfrpgTest_Synonyms] SET QUERY_STORE = OFF
7979
GO
8080
USE [EfrpgTest_Synonyms]
8181
GO
82-
/****** Object: Schema [CustomSchema] Script Date: 26/05/22 21:57:11 ******/
82+
/****** Object: Schema [CustomSchema] Script Date: 12/01/22 23:26:21 ******/
8383
CREATE SCHEMA [CustomSchema]
8484
GO
85-
/****** Object: Schema [Stafford] Script Date: 26/05/22 21:57:11 ******/
85+
/****** Object: Schema [Stafford] Script Date: 12/01/22 23:26:21 ******/
8686
CREATE SCHEMA [Stafford]
8787
GO
88-
/****** Object: Schema [Synonyms] Script Date: 26/05/22 21:57:11 ******/
88+
/****** Object: Schema [Synonyms] Script Date: 12/01/22 23:26:21 ******/
8989
CREATE SCHEMA [Synonyms]
9090
GO
91-
/****** Object: Synonym [CustomSchema].[CsvToIntWithSchema] Script Date: 26/05/22 21:57:11 ******/
91+
/****** Object: Synonym [CustomSchema].[CsvToIntWithSchema] Script Date: 12/01/22 23:26:21 ******/
9292
CREATE SYNONYM [CustomSchema].[CsvToIntWithSchema] FOR [EfrpgTest].[CustomSchema].[CsvToIntWithSchema]
9393
GO
94-
/****** Object: Synonym [dbo].[CarWithDifferentSynonymName] Script Date: 26/05/22 21:57:11 ******/
95-
CREATE SYNONYM [dbo].[CarWithDifferentSynonymName] FOR [EfrpgTest].[dbo].[Car]
96-
GO
97-
/****** Object: Synonym [Synonyms].[Child] Script Date: 26/05/22 21:57:11 ******/
94+
/****** Object: Synonym [Synonyms].[Child] Script Date: 12/01/22 23:26:21 ******/
9895
CREATE SYNONYM [Synonyms].[Child] FOR [EfrpgTest].[Synonyms].[Child]
9996
GO
100-
/****** Object: Synonym [Synonyms].[Parent] Script Date: 26/05/22 21:57:11 ******/
97+
/****** Object: Synonym [Synonyms].[Parent] Script Date: 12/01/22 23:26:21 ******/
10198
CREATE SYNONYM [Synonyms].[Parent] FOR [EfrpgTest].[Synonyms].[Parent]
10299
GO
103-
/****** Object: Synonym [Synonyms].[SimpleStoredProc] Script Date: 26/05/22 21:57:11 ******/
100+
/****** Object: Synonym [Synonyms].[SimpleStoredProc] Script Date: 12/01/22 23:26:21 ******/
104101
CREATE SYNONYM [Synonyms].[SimpleStoredProc] FOR [EfrpgTest].[Synonyms].[SimpleStoredProc]
105102
GO
106-
/****** Object: UserDefinedFunction [dbo].[CsvToInt] Script Date: 26/05/22 21:57:11 ******/
103+
CREATE SYNONYM [CarWithDifferentSynonymName] FOR [EfrpgTest].[dbo].[Car]
104+
GO
105+
/****** Object: UserDefinedFunction [dbo].[CsvToInt] Script Date: 12/01/22 23:26:21 ******/
107106
SET ANSI_NULLS ON
108107
GO
109108
SET QUOTED_IDENTIFIER ON
@@ -144,7 +143,7 @@ BEGIN
144143
RETURN
145144
END
146145
GO
147-
/****** Object: Table [dbo].[UserInfo] Script Date: 26/05/22 21:57:11 ******/
146+
/****** Object: Table [dbo].[UserInfo] Script Date: 12/01/22 23:26:21 ******/
148147
SET ANSI_NULLS ON
149148
GO
150149
SET QUOTED_IDENTIFIER ON
@@ -158,7 +157,7 @@ CREATE TABLE [dbo].[UserInfo](
158157
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
159158
) ON [PRIMARY]
160159
GO
161-
/****** Object: Table [dbo].[UserInfoAttributes] Script Date: 26/05/22 21:57:12 ******/
160+
/****** Object: Table [dbo].[UserInfoAttributes] Script Date: 12/01/22 23:26:21 ******/
162161
SET ANSI_NULLS ON
163162
GO
164163
SET QUOTED_IDENTIFIER ON
@@ -177,12 +176,6 @@ SET IDENTITY_INSERT [dbo].[UserInfo] ON
177176
GO
178177
INSERT [dbo].[UserInfo] ([Id], [Forename]) VALUES (1, N'Ruprecht')
179178
GO
180-
INSERT [dbo].[UserInfo] ([Id], [Forename]) VALUES (2, N'Ruprecht')
181-
GO
182-
INSERT [dbo].[UserInfo] ([Id], [Forename]) VALUES (3, N'Ruprecht')
183-
GO
184-
INSERT [dbo].[UserInfo] ([Id], [Forename]) VALUES (4, N'Ruprecht')
185-
GO
186179
SET IDENTITY_INSERT [dbo].[UserInfo] OFF
187180
GO
188181
ALTER TABLE [dbo].[UserInfoAttributes] WITH CHECK ADD CONSTRAINT [FK_UserInfoAttributes_PrimaryUserInfo] FOREIGN KEY([PrimaryId])

Tester.Integration.EFCore6/EfrpgTestData/Configuration/MQ_ApplicationUserConfiguration.cs

Lines changed: 0 additions & 22 deletions
This file was deleted.

Tester.Integration.EFCore6/EfrpgTestData/Configuration/MQ_LogConfiguration.cs

Lines changed: 0 additions & 28 deletions
This file was deleted.

Tester.Integration.EFCore6/EfrpgTestData/Entities/MQ_ApplicationUser.cs

Lines changed: 0 additions & 35 deletions
This file was deleted.

Tester.Integration.EFCore6/EfrpgTestData/Entities/MQ_Log.cs

Lines changed: 0 additions & 31 deletions
This file was deleted.

Tester.Integration.EFCore6/EfrpgTestData/FakeV6EfrpgTestDbContext.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ public class FakeV6EfrpgTestDbContext : IV6EfrpgTestDbContext
7474
public DbSet<Issue47_Role> Issue47_Roles { get; set; } // Role
7575
public DbSet<Issue47_User> Issue47_Users { get; set; } // Users
7676
public DbSet<Issue47_UserRole> Issue47_UserRoles { get; set; } // UserRoles
77-
public DbSet<MQ_ApplicationUser> MQ_ApplicationUsers { get; set; } // ApplicationUsers
78-
public DbSet<MQ_Log> MQ_Logs { get; set; } // Logs
7977
public DbSet<MultipleKey> MultipleKeys { get; set; } // MultipleKeys
8078
public DbSet<OneEightSix_Issue> OneEightSix_Issues { get; set; } // Issue
8179
public DbSet<OneEightSix_UploadedFile> OneEightSix_UploadedFiles { get; set; } // UploadedFile
@@ -179,8 +177,6 @@ public FakeV6EfrpgTestDbContext()
179177
Issue47_Roles = new FakeDbSet<Issue47_Role>("RoleId");
180178
Issue47_Users = new FakeDbSet<Issue47_User>("UserId");
181179
Issue47_UserRoles = new FakeDbSet<Issue47_UserRole>("UserRoleId");
182-
MQ_ApplicationUsers = new FakeDbSet<MQ_ApplicationUser>("Id");
183-
MQ_Logs = new FakeDbSet<MQ_Log>("Id");
184180
MultipleKeys = new FakeDbSet<MultipleKey>("UserId", "FavouriteColourId", "BestHolidayTypeId");
185181
OneEightSix_Issues = new FakeDbSet<OneEightSix_Issue>("Id");
186182
OneEightSix_UploadedFiles = new FakeDbSet<OneEightSix_UploadedFile>("Id");

Tester.Integration.EFCore6/EfrpgTestData/Interface/IV6EfrpgTestDbContext.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ public interface IV6EfrpgTestDbContext : IDisposable
7474
DbSet<Issue47_Role> Issue47_Roles { get; set; } // Role
7575
DbSet<Issue47_User> Issue47_Users { get; set; } // Users
7676
DbSet<Issue47_UserRole> Issue47_UserRoles { get; set; } // UserRoles
77-
DbSet<MQ_ApplicationUser> MQ_ApplicationUsers { get; set; } // ApplicationUsers
78-
DbSet<MQ_Log> MQ_Logs { get; set; } // Logs
7977
DbSet<MultipleKey> MultipleKeys { get; set; } // MultipleKeys
8078
DbSet<OneEightSix_Issue> OneEightSix_Issues { get; set; } // Issue
8179
DbSet<OneEightSix_UploadedFile> OneEightSix_UploadedFiles { get; set; } // UploadedFile

0 commit comments

Comments
 (0)