-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault-template-go.go
53 lines (41 loc) · 1.11 KB
/
default-template-go.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package migo
var GoDefaultTemplateData = `// file generated with ./migo/tmpl/go/tmpl.go, feel free to edit it :)
package yourpackagename
import (
"github.com/jinzhu/gorm"
"github.com/walkline/migo"
"github.com/walkline/migo/connections/gormconnection"
)
func init() {
migo.DefaultGoMigrationLoader.Add(&Migration{{.version.verSafe}}{})
}
// Migration{{.version.verSafe}} implements {{.version.ver}}-{{.version.name}} migration :)
type Migration{{.version.verSafe}} struct{
DB *gorm.DB
}
func (m *Migration{{.version.verSafe}}) Up() error {
// m.DB ...
return nil
}
func (m *Migration{{.version.verSafe}}) Down() error {
// m.DB ...
return nil
}
func (m *Migration{{.version.verSafe}}) Version() migo.Version {
v, err := migo.VersionFromString("{{.version.ver}}-{{.version.name}}")
if err != nil {
panic(err)
}
return *v
}
func (m *Migration{{.version.verSafe}}) SetVersion(v *migo.Version) {
panic("don't need this")
}
func (m *Migration{{.version.verSafe}}) SetConnection(c migo.Connection) {
gormDB, casted := c.(*gormconnection.GormConnection)
if !casted {
panic("unk DB type")
}
m.DB = gormDB.DB
}
`