BigW Consortium Gitlab

20151231152326_add_akismet_to_application_settings.rb 244 Bytes
Newer Older
1
# rubocop:disable all
2 3 4 5 6 7 8 9
class AddAkismetToApplicationSettings < ActiveRecord::Migration
  def change
    change_table :application_settings do |t|
      t.boolean :akismet_enabled, default: false
      t.string :akismet_api_key
    end
  end
end