├── .gitignore ├── LICENSE ├── README.md ├── column_type.go ├── go.mod ├── go.sum ├── migration.go └── migrator.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | example 4 | .vscode/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alob-mtc/migrator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alob-mtc/migrator/HEAD/README.md -------------------------------------------------------------------------------- /column_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alob-mtc/migrator/HEAD/column_type.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alob-mtc/migrator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alob-mtc/migrator/HEAD/go.sum -------------------------------------------------------------------------------- /migration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alob-mtc/migrator/HEAD/migration.go -------------------------------------------------------------------------------- /migrator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alob-mtc/migrator/HEAD/migrator.go --------------------------------------------------------------------------------