debian-mirror-gitlab/db/migrate/20160331223143_remove_twitter_sharing_enabled_from_application_settings.rb
2016-06-16 23:09:34 +05:30

7 lines
204 B
Ruby

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