rubenv / sql-migrate

SQL schema migration tool for Go.
MIT License
3.19k stars 275 forks source link

Refactor time.Now().Format("20060201150405") #66

Closed lion-man44 closed 7 years ago

lion-man44 commented 7 years ago

Change time.Now().Format("20060201150405") to time.Now().Format("20060102150405") Because golang decides the order of date format. 1 = month 2 = day FYI: https://golang.org/src/time/format.go

ref. #65

rubenv commented 7 years ago

Thanks a lot!

lion-man44 commented 7 years ago

Thanks merged!