Skip to content

Commit

Permalink
cancel test
Browse files Browse the repository at this point in the history
  • Loading branch information
hwbrzzl committed Nov 4, 2024
1 parent f636406 commit 257e0e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions database/schema/blueprint.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ func (r *Blueprint) Integer(column string) schema.ColumnDefinition {
return columnImpl
}

func (r *Blueprint) Primary(column ...string) {
r.indexCommand(constants.CommandPrimary, column)
func (r *Blueprint) Primary(columns ...string) {
r.indexCommand(constants.CommandPrimary, columns)
}

func (r *Blueprint) SetTable(name string) {
Expand Down
2 changes: 1 addition & 1 deletion support/docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const (
TestModelNormal

// Switch this value to control the test model.
TestModel = TestModelMinimum
TestModel = TestModelNormal
)

type ContainerType string
Expand Down

0 comments on commit 257e0e8

Please sign in to comment.