From 27a9febb4aae0f7e4de31a3a7371e13362b169fd Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Fri, 30 Jun 2023 14:17:51 +0800 Subject: [PATCH] Fix --- tags/parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tags/parser.go b/tags/parser.go index a508ff83..53ef0c10 100644 --- a/tags/parser.go +++ b/tags/parser.go @@ -35,7 +35,7 @@ type TableCollations interface { TableCollations() []*schemas.Collation } -var tpTableCollations = reflect.TypeOf((*TableIndices)(nil)).Elem() +var tpTableCollations = reflect.TypeOf((*TableCollations)(nil)).Elem() // Parser represents a parser for xorm tag type Parser struct {