add field comment on create table

This commit is contained in:
lintao
2018-06-06 12:33:28 +08:00
parent 768406f134
commit 1df2662924
2 changed files with 6 additions and 0 deletions

View File

@@ -136,6 +136,7 @@ type fieldInfo struct {
decimals int
isFielder bool // implement Fielder interface
onDelete string
description string
}
// new field info
@@ -300,6 +301,7 @@ checkType:
fi.sf = sf
fi.fullName = mi.fullName + mName + "." + sf.Name
fi.description = sf.Tag.Get("description")
fi.null = attrs["null"]
fi.index = attrs["index"]
fi.auto = attrs["auto"]