@@ -755,7 +755,7 @@ FROM [__EFMigrationsHistory]
755
755
ORDER BY [MigrationId];
756
756
757
757
INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
758
- VALUES (N'00000000000000_Empty', N'9 .0.0');
758
+ VALUES (N'00000000000000_Empty', N'7 .0.0-test ');
759
759
760
760
--Before
761
761
@@ -798,18 +798,18 @@ CONSTRAINT [PK_Blogs] PRIMARY KEY ([Id])
798
798
END
799
799
800
800
INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
801
- VALUES (N'00000000000001_Migration1', N'9 .0.0');
801
+ VALUES (N'00000000000001_Migration1', N'7 .0.0-test ');
802
802
803
803
--After
804
804
805
805
INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
806
- VALUES (N'00000000000002_Migration2', N'9 .0.0');
806
+ VALUES (N'00000000000002_Migration2', N'7 .0.0-test ');
807
807
808
808
DECLARE @result int;
809
809
EXEC @result = sp_releaseapplock @Resource = '__EFMigrationsLock', @LockOwner = 'Session';
810
810
SELECT @result
811
811
""" ,
812
- Fixture . TestSqlLoggerFactory . Sql ,
812
+ Fixture . TestSqlLoggerFactory . Sql . Replace ( ProductInfo . GetVersion ( ) , "7.0.0-test" ) ,
813
813
ignoreLineEndingDifferences : true ) ;
814
814
}
815
815
@@ -867,7 +867,7 @@ FROM [__EFMigrationsHistory]
867
867
ORDER BY [MigrationId];
868
868
869
869
INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
870
- VALUES (N'00000000000000_Empty', N'9 .0.0');
870
+ VALUES (N'00000000000000_Empty', N'7 .0.0-test ');
871
871
872
872
--Before
873
873
@@ -910,18 +910,18 @@ CONSTRAINT [PK_Blogs] PRIMARY KEY ([Id])
910
910
END
911
911
912
912
INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
913
- VALUES (N'00000000000001_Migration1', N'9 .0.0');
913
+ VALUES (N'00000000000001_Migration1', N'7 .0.0-test ');
914
914
915
915
--After
916
916
917
917
INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
918
- VALUES (N'00000000000002_Migration2', N'9 .0.0');
918
+ VALUES (N'00000000000002_Migration2', N'7 .0.0-test ');
919
919
920
920
DECLARE @result int;
921
921
EXEC @result = sp_releaseapplock @Resource = '__EFMigrationsLock', @LockOwner = 'Session';
922
922
SELECT @result
923
923
""" ,
924
- Fixture . TestSqlLoggerFactory . Sql ,
924
+ Fixture . TestSqlLoggerFactory . Sql . Replace ( ProductInfo . GetVersion ( ) , "7.0.0-test" ) ,
925
925
ignoreLineEndingDifferences : true ) ;
926
926
}
927
927
0 commit comments