mirror of
https://github.com/beego/bee.git
synced 2024-11-22 05:00:54 +00:00
Merge pull request #455 from gnanakeethan/feature/database-migration
[Proposal] Database Migrations
This commit is contained in:
commit
1b03d81aa2
@ -22,7 +22,7 @@ import (
|
|||||||
"github.com/beego/bee/config"
|
"github.com/beego/bee/config"
|
||||||
"github.com/beego/bee/generate"
|
"github.com/beego/bee/generate"
|
||||||
"github.com/beego/bee/generate/swaggergen"
|
"github.com/beego/bee/generate/swaggergen"
|
||||||
beeLogger "github.com/beego/bee/logger"
|
"github.com/beego/bee/logger"
|
||||||
"github.com/beego/bee/utils"
|
"github.com/beego/bee/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -71,6 +71,7 @@ func init() {
|
|||||||
CmdGenerate.Flag.Var(&generate.SQLConn, "conn", "Connection string used by the SQLDriver to connect to a database instance.")
|
CmdGenerate.Flag.Var(&generate.SQLConn, "conn", "Connection string used by the SQLDriver to connect to a database instance.")
|
||||||
CmdGenerate.Flag.Var(&generate.Level, "level", "Either 1, 2 or 3. i.e. 1=models; 2=models and controllers; 3=models, controllers and routers.")
|
CmdGenerate.Flag.Var(&generate.Level, "level", "Either 1, 2 or 3. i.e. 1=models; 2=models and controllers; 3=models, controllers and routers.")
|
||||||
CmdGenerate.Flag.Var(&generate.Fields, "fields", "List of table Fields.")
|
CmdGenerate.Flag.Var(&generate.Fields, "fields", "List of table Fields.")
|
||||||
|
CmdGenerate.Flag.Var(&generate.DDL, "ddl", "Generate DDL Migration")
|
||||||
commands.AvailableCommands = append(commands.AvailableCommands, CmdGenerate)
|
commands.AvailableCommands = append(commands.AvailableCommands, CmdGenerate)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,3 +21,4 @@ var SQLConn utils.DocValue
|
|||||||
var Level utils.DocValue
|
var Level utils.DocValue
|
||||||
var Tables utils.DocValue
|
var Tables utils.DocValue
|
||||||
var Fields utils.DocValue
|
var Fields utils.DocValue
|
||||||
|
var DDL utils.DocValue
|
||||||
|
@ -21,7 +21,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
beeLogger "github.com/beego/bee/logger"
|
"github.com/beego/bee/logger"
|
||||||
"github.com/beego/bee/logger/colors"
|
"github.com/beego/bee/logger/colors"
|
||||||
"github.com/beego/bee/utils"
|
"github.com/beego/bee/utils"
|
||||||
)
|
)
|
||||||
@ -203,11 +203,30 @@ func GenerateMigration(mname, upsql, downsql, curpath string) {
|
|||||||
fpath := path.Join(migrationFilePath, fmt.Sprintf("%s_%s.go", today, mname))
|
fpath := path.Join(migrationFilePath, fmt.Sprintf("%s_%s.go", today, mname))
|
||||||
if f, err := os.OpenFile(fpath, os.O_CREATE|os.O_EXCL|os.O_RDWR, 0666); err == nil {
|
if f, err := os.OpenFile(fpath, os.O_CREATE|os.O_EXCL|os.O_RDWR, 0666); err == nil {
|
||||||
defer utils.CloseFile(f)
|
defer utils.CloseFile(f)
|
||||||
content := strings.Replace(MigrationTPL, "{{StructName}}", utils.CamelCase(mname)+"_"+today, -1)
|
ddlSpec := ""
|
||||||
content = strings.Replace(content, "{{CurrTime}}", today, -1)
|
spec := ""
|
||||||
content = strings.Replace(content, "{{UpSQL}}", upsql, -1)
|
up := ""
|
||||||
content = strings.Replace(content, "{{DownSQL}}", downsql, -1)
|
down := ""
|
||||||
f.WriteString(content)
|
if DDL != "" {
|
||||||
|
ddlSpec = "m.ddlSpec()"
|
||||||
|
switch strings.Title(DDL.String()) {
|
||||||
|
case "Create":
|
||||||
|
spec = strings.Replace(DDLSpecCreate, "{{StructName}}", utils.CamelCase(mname)+"_"+today, -1)
|
||||||
|
case "Alter":
|
||||||
|
spec = strings.Replace(DDLSpecAlter, "{{StructName}}", utils.CamelCase(mname)+"_"+today, -1)
|
||||||
|
}
|
||||||
|
spec = strings.Replace(spec, "{{tableName}}", mname, -1)
|
||||||
|
} else {
|
||||||
|
up = strings.Replace(MigrationUp, "{{UpSQL}}", upsql, -1)
|
||||||
|
up = strings.Replace(up, "{{StructName}}", utils.CamelCase(mname)+"_"+today, -1)
|
||||||
|
down = strings.Replace(MigrationDown, "{{DownSQL}}", downsql, -1)
|
||||||
|
down = strings.Replace(down, "{{StructName}}", utils.CamelCase(mname)+"_"+today, -1)
|
||||||
|
}
|
||||||
|
|
||||||
|
header := strings.Replace(MigrationHeader, "{{StructName}}", utils.CamelCase(mname)+"_"+today, -1)
|
||||||
|
header = strings.Replace(header, "{{ddlSpec}}", ddlSpec, -1)
|
||||||
|
header = strings.Replace(header, "{{CurrTime}}", today, -1)
|
||||||
|
f.WriteString(header + spec + up + down)
|
||||||
// Run 'gofmt' on the generated source code
|
// Run 'gofmt' on the generated source code
|
||||||
utils.FormatSourceCode(fpath)
|
utils.FormatSourceCode(fpath)
|
||||||
fmt.Fprintf(w, "\t%s%screate%s\t %s%s\n", "\x1b[32m", "\x1b[1m", "\x1b[21m", fpath, "\x1b[0m")
|
fmt.Fprintf(w, "\t%s%screate%s\t %s%s\n", "\x1b[32m", "\x1b[1m", "\x1b[21m", fpath, "\x1b[0m")
|
||||||
@ -216,8 +235,8 @@ func GenerateMigration(mname, upsql, downsql, curpath string) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const MigrationTPL = `package main
|
const (
|
||||||
|
MigrationHeader = `package main
|
||||||
import (
|
import (
|
||||||
"github.com/astaxie/beego/migration"
|
"github.com/astaxie/beego/migration"
|
||||||
)
|
)
|
||||||
@ -231,18 +250,41 @@ type {{StructName}} struct {
|
|||||||
func init() {
|
func init() {
|
||||||
m := &{{StructName}}{}
|
m := &{{StructName}}{}
|
||||||
m.Created = "{{CurrTime}}"
|
m.Created = "{{CurrTime}}"
|
||||||
|
{{ddlSpec}}
|
||||||
migration.Register("{{StructName}}", m)
|
migration.Register("{{StructName}}", m)
|
||||||
}
|
}
|
||||||
|
`
|
||||||
|
|
||||||
|
DDLSpecCreate = `
|
||||||
|
/*
|
||||||
|
refer beego/migration/doc.go
|
||||||
|
*/
|
||||||
|
func(m *{{StructName}}) ddlSpec(){
|
||||||
|
m.CreateTable("{{tableName}}", "InnoDB", "utf8")
|
||||||
|
m.PriCol("id").SetAuto(true).SetNullable(false).SetDataType("INT(10)").SetUnsigned(true)
|
||||||
|
|
||||||
|
}
|
||||||
|
`
|
||||||
|
DDLSpecAlter = `
|
||||||
|
/*
|
||||||
|
refer beego/migration/doc.go
|
||||||
|
*/
|
||||||
|
func(m *{{StructName}}) ddlSpec(){
|
||||||
|
m.AlterTable("{{tableName}}")
|
||||||
|
|
||||||
|
}
|
||||||
|
`
|
||||||
|
MigrationUp = `
|
||||||
// Run the migrations
|
// Run the migrations
|
||||||
func (m *{{StructName}}) Up() {
|
func (m *{{StructName}}) Up() {
|
||||||
// use m.SQL("CREATE TABLE ...") to make schema update
|
// use m.SQL("CREATE TABLE ...") to make schema update
|
||||||
{{UpSQL}}
|
{{UpSQL}}
|
||||||
}
|
}`
|
||||||
|
MigrationDown = `
|
||||||
// Reverse the migrations
|
// Reverse the migrations
|
||||||
func (m *{{StructName}}) Down() {
|
func (m *{{StructName}}) Down() {
|
||||||
// use m.SQL("DROP TABLE ...") to reverse schema update
|
// use m.SQL("DROP TABLE ...") to reverse schema update
|
||||||
{{DownSQL}}
|
{{DownSQL}}
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user