15 lines
232 B
Go
15 lines
232 B
Go
|
/*
|
||
|
Copyright 2016 GitHub Inc.
|
||
|
See https://github.com/github/gh-osc/blob/master/LICENSE
|
||
|
*/
|
||
|
|
||
|
package base
|
||
|
|
||
|
import ()
|
||
|
|
||
|
type MigrationContext struct {
|
||
|
DatabaseName string
|
||
|
OriginalTableName string
|
||
|
GhostTableName string
|
||
|
}
|