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: ef51ea03a5bf9da5d25cf36224780c0ea0a4d674 (plain)
1
2
3
4
5
6
7
8
class AddAkismetToApplicationSettings < ActiveRecord::Migration[4.2]
  def change
    change_table :application_settings do |t|
      t.boolean :akismet_enabled, default: false
      t.string :akismet_api_key
    end
  end
end