3scale/porta

View on GitHub
db/migrate/20120918131109_add_proxy_configs_to_provider.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddProxyConfigsToProvider < ActiveRecord::Migration
  def self.up
    change_table :accounts do |t|
      t.has_attached_file :proxy_configs
    end

  end

  def self.down
    drop_attached_file :accounts, :proxy_configs
  end
end