Re: schema change tracking

2019-05-16 Thread bricklen
On Thu, May 16, 2019 at 9:41 AM Benedict Holland < benedict.m.holl...@gmail.com> wrote: > I need a tool that can track schema changes in a postgesql database, write > scripts to alter the tables, and store those changes in git. Are there > tools that exist that can do this? > For dev and QA, my

Re: schema change tracking

2019-05-16 Thread Adrian Klaver
to make sure that we can easily migrate between release versions and that means schema change tracking. Basically, to Steve's concern, I don't have to go back and figure out changes (thankfully, I have done that and it sucks) but we need something from an initial release moving forward. I

Re: schema change tracking

2019-05-16 Thread Benedict Holland
release versions and that means schema change tracking. Basically, to Steve's concern, I don't have to go back and figure out changes (thankfully, I have done that and it sucks) but we need something from an initial release moving forward. I don't have time to write my own and this problem is complex

Re: schema change tracking

2019-05-16 Thread Mark Fletcher
On Thu, May 16, 2019 at 9:41 AM Benedict Holland < benedict.m.holl...@gmail.com> wrote: > > I need a tool that can track schema changes in a postgesql database, write > scripts to alter the tables, and store those changes in git. Are there > tools that exist that can do this? > > We ended up

Re: schema change tracking

2019-05-16 Thread Steve Atkins
> On May 16, 2019, at 5:41 PM, Benedict Holland > wrote: > > Hi All, > > I am fairly this question has many answers but here it goes: > > I need a tool that can track schema changes in a postgesql database, write > scripts to alter the tables, and store those changes in git. Are there

schema change tracking

2019-05-16 Thread Benedict Holland
Hi All, I am fairly this question has many answers but here it goes: I need a tool that can track schema changes in a postgesql database, write scripts to alter the tables, and store those changes in git. Are there tools that exist that can do this? BTW, I know if I use a framework with some