gitlab-org--gitlab-foss/db/migrate/20160331223143_remove_twitt...

7 lines
204 B
Ruby

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