docbrown/db/migrate/20210830062627_drop_app_bundle_from_devices.rb
Michael Kohl baa94a0abd
Various cleanups (#14616)
* Remove unused constant

* Remove unused column from OrganizationMembership

* Remove outdated comment

* Remove references to no longer existing roles

* Remove legacy service worker code

* Remove duration_in_seconds_column from podcast_episodes

* Remove app_bundle from devices
2021-08-31 09:17:24 +07:00

7 lines
166 B
Ruby

class DropAppBundleFromDevices < ActiveRecord::Migration[6.1]
def change
safety_assured do
remove_column :devices, :app_bundle, :string
end
end
end