| 87 | var _ Operation = (*DropColumnOperation)(nil) |
| 88 | |
| 89 | type DropTableOperation struct { |
| 90 | Table string `json:"table"` |
| 91 | Column string `json:"column"` |
| 92 | } |
| 93 | |
| 94 | func (o DropTableOperation) Execute(basicRes context.BasicRes) errors.Error { |
| 95 | db := basicRes.GetDal() |
nothing calls this directly
no outgoing calls
no test coverage detected