rubenv / sql-migrate

SQL schema migration tool for Go.
MIT License
3.23k stars 280 forks source link

Wrong migration order when using bindata #80

Closed icernn03 closed 7 years ago

icernn03 commented 7 years ago

// Code generated by go-bindata. // sources: // migrations/20170806175335-staff_userid_unique.sql // migrations/20171305141246-create_noticeboard.sql

_createnoticeboard migration file was created before _staff_useridunique migration file but when generating bindata _staff_useridunique is coming before _createnoticeboard because of the time-stamp. how to I fix this?

icernn03 commented 7 years ago

issue fixed in #66