odan / slim4-skeleton

A Slim 4 Skeleton
https://odan.github.io/slim4-skeleton/
MIT License
439 stars 80 forks source link

curious on your reasons for switching from phinx to phoenix? #76

Closed dunkoh closed 3 years ago

dunkoh commented 3 years ago

@odan We've been using Phinx for db migrations/changes since it was part of your skeleton previously. I'm curious on your reasoning for switching to Phoenix, so that I might know if it will be worth the change for us?

odan commented 3 years ago

The main reasons for Phoenix are that it is a more lightweight, brings fewer dependencies and also has an integrated diff command. Phoenix is also not so opinionated about the default table structure.

Phinx is still perfectly fine. If you are already using Phinx, then definitely keep using it.

ziauddin commented 3 years ago

I also love phoenix for its simplicity and light weight. I use different migration library is different project. but after using phoenix I believe it's easy to use and adoption with it is very fast.

dunkoh commented 3 years ago

Thank you!