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 IndexBuilder builder.Builder
type indexData struct { type indexData struct {
Unique bool Unique bool
Spatial bool Spatial bool
Fulltext bool Fulltext bool
Name string Name string
TableName string TableName string
Columns []IndexColumn Columns []IndexColumn
IfNotExists bool IfNotExists bool
} }
type IndexColumn struct { type IndexColumn struct {
Name string Name string
Extras []string Extras []string
Collate string Collate string
} }