├── Makefile ├── README.md ├── UNLICENSE ├── doc.go ├── migration.go └── session.vim /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurntSushi/migration/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurntSushi/migration/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurntSushi/migration/HEAD/UNLICENSE -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurntSushi/migration/HEAD/doc.go -------------------------------------------------------------------------------- /migration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BurntSushi/migration/HEAD/migration.go -------------------------------------------------------------------------------- /session.vim: -------------------------------------------------------------------------------- 1 | au BufWritePost *.go silent!make tags > /dev/null 2>&1 2 | --------------------------------------------------------------------------------