We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63f7e5b commit 61ad1b8Copy full SHA for 61ad1b8
test/EFCore.PG.FunctionalTests/Migrations/MigrationsNpgsqlTest.cs
@@ -2688,7 +2688,7 @@ await Test(
2688
Assert.Equal("public", citext.Schema);
2689
});
2690
2691
- AssertSql("CREATE EXTENSION IF NOT EXISTS citext;");
+ AssertSql("CREATE EXTENSION IF NOT EXISTS citext CASCADE;");
2692
}
2693
2694
[Fact]
@@ -2714,7 +2714,7 @@ IF NOT EXISTS(SELECT 1 FROM pg_namespace WHERE nspname = 'some_schema') THEN
2714
END $EF$;
2715
""",
2716
//
2717
- @"CREATE EXTENSION IF NOT EXISTS citext SCHEMA some_schema;");
+ @"CREATE EXTENSION IF NOT EXISTS citext SCHEMA some_schema CASCADE;");
2718
2719
2720
#endregion
0 commit comments