Add migrate command

This commit is contained in:
Vikram Rangnekar
2019-09-26 00:35:31 -04:00
parent 18ce030056
commit 5e86b445c5
37 changed files with 1857 additions and 270 deletions

View File

@ -0,0 +1,12 @@
package migrate_test
import (
"github.com/jackc/pgx"
)
var defaultConnectionParameters *pgx.ConnConfig = &pgx.ConnConfig{
// Host: "127.0.0.1",
User: "tern",
Password: "secret", // Password is usually not needed when using socket
Database: "tern_migrate_test",
}