1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-18 11:04:15 +00:00

Update: fixing a SQL generation code

Signed-off-by: Gnanakeethan Balasubramaniam <gnanakeethan@gmail.com>
This commit is contained in:
Gnanakeethan Balasubramaniam 2017-07-16 07:10:09 +05:30
parent d453242e48
commit cb38ab4f85
No known key found for this signature in database
GPG Key ID: 24924006ABA72F31

View File

@ -151,7 +151,7 @@ func (c *Column) SetAuto(inc bool) *Column {
//SetNullable sets the column to be null
func (c *Column) SetNullable(null bool) *Column {
if null {
c.Null = "DEFAULT NULL"
c.Null = ""
} else {
c.Null = "NOT NULL"
@ -182,7 +182,7 @@ func (c *Column) SetDataType(dataType string) *Column {
//SetOldNullable allows reverting to previous nullable on reverse ms
func (c *RenameColumn) SetOldNullable(null bool) *RenameColumn {
if null {
c.OldNull = "DEFAULT NULL"
c.OldNull = ""
} else {
c.OldNull = "NOT NULL"