debian-mirror-gitlab/db/migrate/20160331223143_remove_twitter_sharing_enabled_from_application_settings.rb
2019-02-15 15:39:39 +05:30

6 lines
209 B
Ruby

# rubocop:disable all
class RemoveTwitterSharingEnabledFromApplicationSettings < ActiveRecord::Migration[4.2]
def change
remove_column :application_settings, :twitter_sharing_enabled, :boolean
end
end