You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am encountering an issue while attempting to create a schema using Goose migrations. I added the "CREATE SCHEMA schema_name" command in the Goose migration file, the script ran successfully and created the goose_db_version table. However, the schemas are not being created. Examples i tried: -- +goose Up -- +goose StatementBegin CREATE SCHEMA schema_name_example; -- +goose StatementEnd
-- +goose Up CREATE SCHEMA schema_name_example;
Is this the expected behaviour or i'm doing something wrong?
The text was updated successfully, but these errors were encountered:
Indeed, you're right. My apologies. The issue lies with IntelliJ IDEA in this case. I'm using their database console to view my tables, etc., and it's not displaying them when I create the schema via Goose. However, it shows up when I create it manually. Thank you for the response, and I apologize for the seemingly simple question.
I am encountering an issue while attempting to create a schema using Goose migrations. I added the "CREATE SCHEMA schema_name" command in the Goose migration file, the script ran successfully and created the goose_db_version table. However, the schemas are not being created.
Examples i tried:
-- +goose Up -- +goose StatementBegin CREATE SCHEMA schema_name_example; -- +goose StatementEnd
-- +goose Up CREATE SCHEMA schema_name_example;
Is this the expected behaviour or i'm doing something wrong?
The text was updated successfully, but these errors were encountered: