Ruben Vermeersch
Ruben Vermeersch
The CLI is really just intended as a utility during development. For any serious deployment (especially 12 factor things), I always recommend using sql-migrate as a library and embedding migrations...
I'm sorry, but I don't use MySQL. We have integration tests for MySQL so all I can say is that it should work. Perhaps there's something wrong with your database?...
Yes, that should be correct. But I have no experience with Oracle, so I can't really help you there. What I can tell is that for e.g. PostgreSQL you need...
Nice! Some people expressed interest in having different prefixes (most common I can think of would be an incrementing integer). We don't have to implement these right now, but let's...
One thing I didn't want to enforce is a naming convention for migrations (the prefix). You can use the epoch, some kind of formatted time stamp or a sequence number;...
> If action is create then the pre-population of the migrate Down would be skipped, but for alter or drop it can do the scanning thing and populate it. How...
> Personally I'd rather use the config file rather than trying to be smart (KISS principle). I guess we have different opinions on KISS then :-). Any piece of configuration...
Thanks to the wonderful work of @yageek, there's now a `new` command. It's not configurable nor smart, but we had to start somewhere. If someone is willing to make this...
It's probably about time we do that indeed! Could you send a PR?
Closed in #206, thanks @idcmp