Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
beego
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
beego
Commits
1df26629
Commit
1df26629
authored
Jun 06, 2018
by
lintao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add field comment on create table
parent
768406f1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
cmd_utils.go
orm/cmd_utils.go
+4
-0
models_info_f.go
orm/models_info_f.go
+2
-0
No files found.
orm/cmd_utils.go
View file @
1df26629
...
@@ -198,6 +198,10 @@ func getDbCreateSQL(al *alias) (sqls []string, tableIndexes map[string][]dbIndex
...
@@ -198,6 +198,10 @@ func getDbCreateSQL(al *alias) (sqls []string, tableIndexes map[string][]dbIndex
column
=
strings
.
Replace
(
column
,
"%COL%"
,
fi
.
column
,
-
1
)
column
=
strings
.
Replace
(
column
,
"%COL%"
,
fi
.
column
,
-
1
)
}
}
if
fi
.
description
!=
""
{
column
+=
" "
+
fmt
.
Sprintf
(
"COMMENT '%s'"
,
fi
.
description
)
}
columns
=
append
(
columns
,
column
)
columns
=
append
(
columns
,
column
)
}
}
...
...
orm/models_info_f.go
View file @
1df26629
...
@@ -136,6 +136,7 @@ type fieldInfo struct {
...
@@ -136,6 +136,7 @@ type fieldInfo struct {
decimals
int
decimals
int
isFielder
bool
// implement Fielder interface
isFielder
bool
// implement Fielder interface
onDelete
string
onDelete
string
description
string
}
}
// new field info
// new field info
...
@@ -300,6 +301,7 @@ checkType:
...
@@ -300,6 +301,7 @@ checkType:
fi
.
sf
=
sf
fi
.
sf
=
sf
fi
.
fullName
=
mi
.
fullName
+
mName
+
"."
+
sf
.
Name
fi
.
fullName
=
mi
.
fullName
+
mName
+
"."
+
sf
.
Name
fi
.
description
=
sf
.
Tag
.
Get
(
"description"
)
fi
.
null
=
attrs
[
"null"
]
fi
.
null
=
attrs
[
"null"
]
fi
.
index
=
attrs
[
"index"
]
fi
.
index
=
attrs
[
"index"
]
fi
.
auto
=
attrs
[
"auto"
]
fi
.
auto
=
attrs
[
"auto"
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment