Skip to content

Commit 61ad1b8

Browse files
authored
Made extension SQL changes for tests
1 parent 63f7e5b commit 61ad1b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/EFCore.PG.FunctionalTests/Migrations/MigrationsNpgsqlTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2688,7 +2688,7 @@ await Test(
26882688
Assert.Equal("public", citext.Schema);
26892689
});
26902690

2691-
AssertSql("CREATE EXTENSION IF NOT EXISTS citext;");
2691+
AssertSql("CREATE EXTENSION IF NOT EXISTS citext CASCADE;");
26922692
}
26932693

26942694
[Fact]
@@ -2714,7 +2714,7 @@ IF NOT EXISTS(SELECT 1 FROM pg_namespace WHERE nspname = 'some_schema') THEN
27142714
END $EF$;
27152715
""",
27162716
//
2717-
@"CREATE EXTENSION IF NOT EXISTS citext SCHEMA some_schema;");
2717+
@"CREATE EXTENSION IF NOT EXISTS citext SCHEMA some_schema CASCADE;");
27182718
}
27192719

27202720
#endregion

0 commit comments

Comments
 (0)