Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20151231152326_add_akismet_to_application_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f52c758f9a9a59262efadac25acc08696d6e4d7 (plain)
1
2
3
4
5
6
7
8
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