| 72 | } |
| 73 | |
| 74 | type DropColumnOperation struct { |
| 75 | Table string `json:"table"` |
| 76 | Column string `json:"column"` |
| 77 | } |
| 78 | |
| 79 | func (o DropColumnOperation) Execute(basicRes context.BasicRes) errors.Error { |
| 80 | db := basicRes.GetDal() |
nothing calls this directly
no outgoing calls
no test coverage detected