chore: fmt

This commit is contained in:
Reinaldy Rafli 2021-11-09 12:16:31 +07:00
parent 070280bdf7
commit a891b58ffb
No known key found for this signature in database
GPG Key ID: CFDB9400255D8CB6
4 changed files with 18 additions and 18 deletions

View File

@ -10,18 +10,18 @@ import (
type IndexBuilder builder.Builder
type indexData struct {
Unique bool
Spatial bool
Fulltext bool
Name string
TableName string
Columns []IndexColumn
Unique bool
Spatial bool
Fulltext bool
Name string
TableName string
Columns []IndexColumn
IfNotExists bool
}
type IndexColumn struct {
Name string
Extras []string
Name string
Extras []string
Collate string
}