3scale/porta

View on GitHub
db/migrate/20111130100321_dropping_usage_line_items.rb

Summary

Maintainability
A
0 mins
Test Coverage
class DroppingUsageLineItems < ActiveRecord::Migration
  def self.up
    drop_table :usage_line_items
  end

  def self.down
    create_table "usage_line_items", :force => true do |t|
      t.datetime "created_at"
      t.datetime "updated_at"
    end
  end
end