3scale/porta

View on GitHub
db/migrate/20110803102316_add_service_notification_settings.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddServiceNotificationSettings < ActiveRecord::Migration
  def self.up
    change_table Service.table_name do |t|
      t.text :notification_settings
    end
  end

  def self.down
    change_table Service.table_name do |t|
      t.remove :notification_settings
    end
  end
end