2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2016-01-09 14:30:34 -05:00
|
|
|
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
|