docbrown/db/migrate/20200227214321_remove_sent_from_broadcasts.rb
Vaidehi Joshi 422cebf87e
Remove sent attribute from broadcasts table (#6350) [deploy]
Now that 6318 and 6319 have been merged, we no longer need the `sent` attribute on the Broadcast model.
2020-02-27 17:36:26 -05:00

5 lines
151 B
Ruby

class RemoveSentFromBroadcasts < ActiveRecord::Migration[5.2]
def change
safety_assured { remove_column :broadcasts, :sent, :boolean }
end
end