Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
mirshahriar committed May 21, 2018
1 parent 43822f7 commit 2c11c98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/dialect/dialect.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

// Dialect interface contains behaviors that differ across SQL database
type Dialect interface {
// ColumnSignatureOf return column's signature (data type & Constraint)
// ColumnSignatureOf return column's signature (data type & constraint)
ColumnSignatureOf(field *descriptor.Field) string
}

Expand Down Expand Up @@ -53,7 +53,7 @@ const (
ConstraintUnique Constraint = "UNIQUE"
)

// AdditionalType to know which constraint in added for a column
// AdditionalType to know which constraint is added for a column
type AdditionalType struct {
SetConstraint map[Constraint]bool
}
Expand Down

0 comments on commit 2c11c98

Please sign in to comment.