2016-06-16 23:09:34 +05:30
|
|
|
# rubocop:disable all
|
2016-04-02 18:10:28 +05:30
|
|
|
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
|