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: 7b0fab6f557f819d83f3e7df73dee69f8b22d00a (plain)
1
2
3
4
5
6
7
8
9
# rubocop:disable all
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