| 58 | var _ Operation = (*ExecuteOperation)(nil) |
| 59 | |
| 60 | type AddColumnOperation struct { |
| 61 | Table string `json:"table"` |
| 62 | Column string `json:"column"` |
| 63 | ColumnType dal.ColumnType `json:"column_type"` |
| 64 | } |
| 65 | |
| 66 | func (o AddColumnOperation) Execute(basicRes context.BasicRes) errors.Error { |
| 67 | db := basicRes.GetDal() |
nothing calls this directly
no outgoing calls
no test coverage detected