Skip to content

Commit

Permalink
remove fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
hwbrzzl committed Oct 5, 2024
1 parent f8335a9 commit 133d23e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions database/migration/blueprint.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package migration

import (
"fmt"

"github.com/goravel/framework/contracts/database/migration"
ormcontract "github.com/goravel/framework/contracts/database/orm"
"github.com/goravel/framework/support/convert"
Expand Down Expand Up @@ -48,8 +46,6 @@ func (r *Blueprint) BigInteger(column string) migration.ColumnDefinition {

func (r *Blueprint) Build(query ormcontract.Query, grammar migration.Grammar) error {
for _, sql := range r.ToSql(query, grammar) {
// TODO remove
fmt.Println("sql:", sql)
if _, err := query.Exec(sql); err != nil {
return err
}
Expand Down

0 comments on commit 133d23e

Please sign in to comment.