@@ -204,18 +204,12 @@ public MigrationsFbTest(MigrationsFbFixture fixture)
204
204
[ Fact ( Skip = SkipReason ) ]
205
205
public override Task Rename_index ( ) => base . Rename_index ( ) ;
206
206
207
- [ Fact ( Skip = SkipReason ) ]
208
- public override Task Add_primary_key ( ) => base . Add_primary_key ( ) ;
209
-
210
207
[ Fact ( Skip = SkipReason ) ]
211
208
public override Task Add_primary_key_with_name ( ) => base . Add_primary_key_with_name ( ) ;
212
209
213
210
[ Fact ( Skip = SkipReason ) ]
214
211
public override Task Add_primary_key_composite_with_name ( ) => base . Add_primary_key_composite_with_name ( ) ;
215
212
216
- [ Fact ( Skip = SkipReason ) ]
217
- public override Task Drop_primary_key ( ) => base . Drop_primary_key ( ) ;
218
-
219
213
[ Fact ( Skip = SkipReason ) ]
220
214
public override Task Add_foreign_key ( ) => base . Add_foreign_key ( ) ;
221
215
@@ -294,13 +288,49 @@ public MigrationsFbTest(MigrationsFbFixture fixture)
294
288
[ Fact ( Skip = SkipReason ) ]
295
289
public override Task SqlOperation ( ) => base . SqlOperation ( ) ;
296
290
291
+ [ Fact ( Skip = SkipReason ) ]
292
+ public override Task Add_primary_key_int ( ) => base . Add_primary_key_int ( ) ;
293
+
294
+ [ Fact ( Skip = SkipReason ) ]
295
+ public override Task Add_primary_key_string ( ) => base . Add_primary_key_string ( ) ;
296
+
297
+ [ Fact ( Skip = SkipReason ) ]
298
+ public override Task Alter_column_change_computed_recreates_indexes ( ) => base . Alter_column_change_computed_recreates_indexes ( ) ;
299
+
300
+ [ Fact ( Skip = SkipReason ) ]
301
+ public override Task Alter_column_make_required_with_null_data ( ) => base . Alter_column_make_required_with_null_data ( ) ;
302
+
303
+ [ Fact ( Skip = SkipReason ) ]
304
+ public override Task Alter_index_change_sort_order ( ) => base . Alter_index_change_sort_order ( ) ;
305
+
306
+ [ Fact ( Skip = SkipReason ) ]
307
+ public override Task Alter_index_make_unique ( ) => base . Alter_index_make_unique ( ) ;
308
+
309
+ [ Fact ( Skip = SkipReason ) ]
310
+ public override Task Create_index_descending ( ) => base . Create_index_descending ( ) ;
311
+
312
+ [ Fact ( Skip = SkipReason ) ]
313
+ public override Task Create_index_descending_mixed ( ) => base . Create_index_descending_mixed ( ) ;
314
+
315
+ [ Fact ( Skip = SkipReason ) ]
316
+ public override Task Create_sequence_long ( ) => base . Create_sequence_long ( ) ;
317
+
318
+ [ Fact ( Skip = SkipReason ) ]
319
+ public override Task Create_sequence_short ( ) => base . Create_sequence_short ( ) ;
320
+
321
+ [ Fact ( Skip = SkipReason ) ]
322
+ public override Task Drop_primary_key_int ( ) => base . Drop_primary_key_int ( ) ;
323
+
324
+ [ Fact ( Skip = SkipReason ) ]
325
+ public override Task Drop_primary_key_string ( ) => base . Drop_primary_key_string ( ) ;
326
+
297
327
public class MigrationsFbFixture : MigrationsFixtureBase
298
328
{
299
329
protected override string StoreName => nameof ( MigrationsFbTest ) ;
300
330
301
331
protected override ITestStoreFactory TestStoreFactory => FbTestStoreFactory . Instance ;
302
332
303
- public override TestHelpers TestHelpers => FbTestHelpers . Instance ;
333
+ public override RelationalTestHelpers TestHelpers => FbTestHelpers . Instance ;
304
334
305
335
protected override IServiceCollection AddServices ( IServiceCollection serviceCollection )
306
336
#pragma warning disable EF1001
0 commit comments