| 102 | var _ Operation = (*DropTableOperation)(nil) |
| 103 | |
| 104 | type RenameColumnOperation struct { |
| 105 | Table string `json:"table"` |
| 106 | OldName string `json:"old_name"` |
| 107 | NewName string `json:"new_name"` |
| 108 | } |
| 109 | |
| 110 | func (o RenameColumnOperation) Execute(basicRes context.BasicRes) errors.Error { |
| 111 | db := basicRes.GetDal() |
nothing calls this directly
no outgoing calls
no test coverage detected