2018-12-23 12:14:25 +05:30
|
|
|
class AddAkismetToApplicationSettings < ActiveRecord::Migration[4.2]
|
2016-04-02 18:10:28 +05:30
|
|
|
def change
|
|
|
|
change_table :application_settings do |t|
|
|
|
|
t.boolean :akismet_enabled, default: false
|
|
|
|
t.string :akismet_api_key
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|