Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update
alter-licences-view
migration script (#1245)
Following on from this PR #1242 where the `include_in_sroc_tpt_billing` column was removed from the view. The intention was to then create migration scripts to remove the column from the table. However, we have realised that if we do this, given the way the migration scripts run. When all the migrations relating to the removal of this column are pushed up to our servers and they run together. An error will be generated as the migrations will try to remove the column from the table before it is removed from the view. We have therefore opted for what we do when removing legacy columns from our views. We just comment out the column in the view migration and leave the column in the table. This PR will update the migration that was created previously.
- Loading branch information