When I create a Snowflake table with the database resource it will automatically create a schema PUBLIC
.
How can I prevent this behaviour?
resource "snowflake_database" "simple" {
name = "testing"
comment = "test comment"
data_retention_time_in_days = 3
}