Skip to content

Commit

Permalink
Refact code
Browse files Browse the repository at this point in the history
  • Loading branch information
jinzhu committed Aug 30, 2014
1 parent d806b70 commit f984bc8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 14 deletions.
3 changes: 1 addition & 2 deletions anonymous_struct_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,17 @@ package gorm_test
import "testing"

type BasePost struct {
Id int64
Title string
Url string
}

type HNPost struct {
Id int64
BasePost `gorm:"embedded"`
Upvotes int32
}

type EngadgetPost struct {
Id int64
BasePost
ImageUrl string
}
Expand Down
2 changes: 1 addition & 1 deletion callback_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func Create(scope *Scope) {
var sqls, columns []string

for _, field := range scope.Fields() {
if len(field.SqlTag) > 0 && !field.IsIgnored && (field.DBName != scope.PrimaryKey() || !scope.PrimaryKeyZero()) {
if len(field.SqlTag) > 0 && !field.IsIgnored && (!field.IsPrimaryKey || !scope.PrimaryKeyZero()) {
columns = append(columns, scope.Quote(field.DBName))
sqls = append(sqls, scope.AddToVars(field.Value))
}
Expand Down
2 changes: 1 addition & 1 deletion callback_update.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func Update(scope *Scope) {
}
} else {
for _, field := range scope.Fields() {
if field.DBName != scope.PrimaryKey() && len(field.SqlTag) > 0 && !field.IsIgnored {
if !field.IsPrimaryKey && len(field.SqlTag) > 0 && !field.IsIgnored {
sqls = append(sqls, fmt.Sprintf("%v = %v", scope.Quote(field.DBName), scope.AddToVars(field.Value)))
}
}
Expand Down
19 changes: 9 additions & 10 deletions migration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,14 @@ func runMigration() {
fmt.Printf("Got error when try to delete table users, %+v\n", err)
}

DB.Exec("drop table products;")
DB.Exec("drop table emails;")
DB.Exec("drop table addresses")
DB.Exec("drop table credit_cards")
DB.Exec("drop table roles")
DB.Exec("drop table companies")
DB.Exec("drop table animals")
DB.Exec("drop table user_languages")
DB.Exec("drop table languages")
for _, table := range []string{"animals", "user_languages"} {
DB.Exec(fmt.Sprintf("drop table %v;", table))
}

values := []interface{}{&Product{}, &Email{}, &Address{}, &CreditCard{}, &Company{}, &Role{}, &Language{}, &HNPost{}, &EngadgetPost{}}
for _, value := range values {
DB.DropTable(value)
}

if err := DB.CreateTable(&Animal{}).Error; err != nil {
panic(fmt.Sprintf("No error should happen when create table, but got %+v", err))
Expand All @@ -29,7 +28,7 @@ func runMigration() {
panic(fmt.Sprintf("No error should happen when create table, but got %+v", err))
}

if err := DB.AutoMigrate(&Product{}, &Email{}, &Address{}, &CreditCard{}, &Company{}, &Role{}, &Language{}, &HNPost{}, &EngadgetPost{}).Error; err != nil {
if err := DB.AutoMigrate(values...).Error; err != nil {
panic(fmt.Sprintf("No error should happen when create table, but got %+v", err))
}
}
Expand Down

0 comments on commit f984bc8

Please sign in to comment.