Merge pull request #250 from bobbyrullo/fix_dex

db, functional: make value column in key not pkey
This commit is contained in:
bobbyrullo 2015-12-28 16:12:33 -08:00
commit 75488c0e78
5 changed files with 35 additions and 52 deletions

View file

@ -27,7 +27,6 @@ func init() {
name: keyTableName,
model: privateKeySetBlob{},
autoinc: false,
pkey: []string{"value"},
})
}

View file

@ -0,0 +1,5 @@
-- +migrate Up
ALTER TABLE key ADD COLUMN tmp_value bytea;
UPDATE KEY SET tmp_value = value;
ALTER TABLE key DROP COLUMN value;
ALTER TABLE key RENAME COLUMN "tmp_value" to "value";

File diff suppressed because one or more lines are too long

View file

@ -2,5 +2,5 @@ package migrations
// To download go-bindata run `go get -u github.com/jteeuwen/go-bindata/...`
//go:generate go-bindata -modtime=1 -pkg migrations -o assets.go ../
//go:generate go-bindata -modtime=1 -pkg migrations -o assets.go -ignore \.go$ -prefix "../.." ../../db/migrations
//go:generate gofmt -w assets.go

View file

@ -45,7 +45,9 @@ func connect(t *testing.T) *gorp.DbMap {
panic(fmt.Sprintf("Unable to drop migration table: %v", err))
}
db.MigrateToLatest(c)
if _, err = db.MigrateToLatest(c); err != nil {
panic(fmt.Sprintf("Unable to migrate: %v", err))
}
return c
}