Bryce Plunkett
Bryce Plunkett
It's unfortunately not the straight forward (think webs of dependencies), but I do intend to add support for them and have a mental model in my head as to how...
Sure! You can give it a shot, but a thorough implementation will be pretty complex. I can try to add really simple view support in the future.
There are three main parts: 1. Schema extraction 2. Schema diffing 3. SQL generation The latter part is the most complex: we take the diff generated from step 2 and...
I'll try to take a stab at it this weekend. I think there are some large simplifications I can make to get some sort of MVP out. I'll add I...
> @bplunkett-stripe Thanks for the suggestions on this PR! I’m happy to incorporate improvements. > > However, in my testing, I noticed an issue: when we create a new database...
This should be pretty straightforward to implement I believe.
@bokidonev It is totally possible to ignore schema-level objects. What are you trying to ignore (tables, indexes, triggers, etc)? We'd probably have to implement it an object-to-object basis
Okay cool, that makes sense. I'll see if I can make something moderately generic to do this across most schema objects
> Can you elaborate on what you mean by that? You can plan your migration with `--insert-statement` that create or replace your stored procedures every time. Insert statement lets you...
> So for now i can't do stored procedures ? You can do them using the workaround I suggested, but otherwise, the tooling does not support them yet. I can...