(nullable bool)
| 135 | } |
| 136 | |
| 137 | func (c *Column) SetNullable(nullable bool) *Column { |
| 138 | c.Nullable = nullable |
| 139 | return c |
| 140 | } |
| 141 | |
| 142 | func (c *Column) SetPrimaryKey(pk bool) *Column { |
| 143 | c.PrimaryKey = pk |
no outgoing calls
no test coverage detected