Branching and how migrations are handled.
I created a persistent branch called "staging" that is linked to a branch in Github called "staging". I commit to the branch and this triggers the changes to be pulled and applied on Supabase for the "staging" branch. However if I add a new migration it is not picked up when the branch is updated. Is that expected behaviour?
2 Replies
@21 Cabbage yes, that’s expected Supabase doesn’t auto run new migrations on branch updates. You’ll need to apply them manually or trigger them through the Supabase CLI
@Ad Intellegent Ahh okay thanks.