mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 14:10:54 +00:00
undefined: beego.BeeLogger fixed
This commit is contained in:
parent
ea91e7638c
commit
95ff817019
@ -17,7 +17,7 @@ package migration
|
|||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego/logs"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Index struct defines the structure of Index Columns
|
// Index struct defines the structure of Index Columns
|
||||||
@ -316,7 +316,7 @@ func (m *Migration) GetSQL() (sql string) {
|
|||||||
sql += fmt.Sprintf("ALTER TABLE `%s` ", m.TableName)
|
sql += fmt.Sprintf("ALTER TABLE `%s` ", m.TableName)
|
||||||
for index, column := range m.Columns {
|
for index, column := range m.Columns {
|
||||||
if !column.remove {
|
if !column.remove {
|
||||||
beego.BeeLogger.Info("col")
|
logs.Info("col")
|
||||||
sql += fmt.Sprintf("\n ADD `%s` %s %s %s %s %s", column.Name, column.DataType, column.Unsign, column.Null, column.Inc, column.Default)
|
sql += fmt.Sprintf("\n ADD `%s` %s %s %s %s %s", column.Name, column.DataType, column.Unsign, column.Null, column.Inc, column.Default)
|
||||||
} else {
|
} else {
|
||||||
sql += fmt.Sprintf("\n DROP COLUMN `%s`", column.Name)
|
sql += fmt.Sprintf("\n DROP COLUMN `%s`", column.Name)
|
||||||
|
Loading…
Reference in New Issue
Block a user