Replies: 2 comments 5 replies
-
Dependencies only work in a single database. The registry Sqitch uses lives in each database, and they're completely independent. If you deploy |
Beta Was this translation helpful? Give feedback.
1 reply
-
That is correct. I'm curious, though: what kinds of dependencies are you looking to enforce across databases? FWIW on MySQL, you can do it across databases, because in MySQL a database == a schema. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I wants to manage dependencies between two different snowflake database. For that I have created 2 Sqitch project. Let's say project SQITCH_DEV for database SQITCH_DEV and project SQITCH_DEV_2 for database SQITCH_DEV_2. Both project successfully initiated. I have created test schema and user table in project SQITCH_DEV. I am successfully deployed project SQITCH_DEV. I have added table in project SQITCH_DEV_2 with dependency.
The above command successfully added employee.sql script.
When I deploy project SQITCH_DEV_2 I am getting below error:
I got reference from this link : https://contourline.wordpress.com/2016/03/16/an-example-of-using-sqitch-with-cross-project-dependencies/
Beta Was this translation helpful? Give feedback.
All reactions