migrate/cli/build_redshift.go
Jonathan Bryant 91ecd3cb6a Added support for Redshift.
* Added driver that wraps the standard PostgreSQL driver
* Added build.
* Added driver to documentation.
2017-05-11 15:47:40 -06:00

8 lines
94 B
Go

// +build redshift
package main
import (
_ "github.com/mattes/migrate/database/redshift"
)