debian-mirror-gitlab/db/migrate/20160331223143_remove_twitter_sharing_enabled_from_application_settings.rb

7 lines
204 B
Ruby
Raw Normal View History

# rubocop:disable all
2019-01-03 12:48:30 +05:30
class RemoveTwitterSharingEnabledFromApplicationSettings < ActiveRecord::Migration
2016-06-02 11:05:42 +05:30
def change
remove_column :application_settings, :twitter_sharing_enabled, :boolean
end
end