Now that 6318 and 6319 have been merged, we no longer need the `sent` attribute on the Broadcast model.
5 lines
151 B
Ruby
5 lines
151 B
Ruby
class RemoveSentFromBroadcasts < ActiveRecord::Migration[5.2]
|
|
def change
|
|
safety_assured { remove_column :broadcasts, :sent, :boolean }
|
|
end
|
|
end
|