Fix typo
This commit is contained in:
		
							parent
							
								
									500bff5c96
								
							
						
					
					
						commit
						384ceed8c6
					
				@ -96,12 +96,12 @@ func (ct ColumnType) ScanType() reflect.Type {
 | 
				
			|||||||
	return ct.SQLColumnType.ScanType()
 | 
						return ct.SQLColumnType.ScanType()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Comment returns the comment of curent column.
 | 
					// Comment returns the comment of current column.
 | 
				
			||||||
func (ct ColumnType) Comment() (value string, ok bool) {
 | 
					func (ct ColumnType) Comment() (value string, ok bool) {
 | 
				
			||||||
	return ct.CommentValue.String, ct.CommentValue.Valid
 | 
						return ct.CommentValue.String, ct.CommentValue.Valid
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// DefaultValue returns the default value of curent column.
 | 
					// DefaultValue returns the default value of current column.
 | 
				
			||||||
func (ct ColumnType) DefaultValue() (value string, ok bool) {
 | 
					func (ct ColumnType) DefaultValue() (value string, ok bool) {
 | 
				
			||||||
	return ct.DefaultValueValue.String, ct.DefaultValueValue.Valid
 | 
						return ct.DefaultValueValue.String, ct.DefaultValueValue.Valid
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user