Is there a way to write to a GOOSE_TABLE in another Redshift database from where migrations are run? #998
-
|
I’m trying to run SQL migrations on a Redshift database (db123), which is read-only. However, I need to grant SELECT permissions to users in Goose using a migration script. By default, Goose stores its state table in the same database where migrations are executed. Since db123 is read-only, that setup won’t work. Is there a way to configure Goose to track migration state in a table located in a different database (using a separate connection string)? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Short answer is no, the schema version table is stored in the same database. Interesting use case though, I've never heard of this case. |
Beta Was this translation helpful? Give feedback.
Short answer is no, the schema version table is stored in the same database.
Interesting use case though, I've never heard of this case.