| 6 | ) |
| 7 | |
| 8 | type AlterTableSqlBuilder struct { |
| 9 | Dialect DialectType |
| 10 | Name string |
| 11 | Changes []string |
| 12 | } |
| 13 | |
| 14 | func (b *AlterTableSqlBuilder) AddColumn(col *Column) *AlterTableSqlBuilder { |
| 15 | if colVal, err := col.String(); err == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected