3scale/porta

View on GitHub
db/migrate/20081202105835_remove_paid_at_from_payment_items.rb

Summary

Maintainability
A
0 mins
Test Coverage
class RemovePaidAtFromPaymentItems < ActiveRecord::Migration
  def self.up
    change_table :payment_items do |t|
      t.remove :paid_at
    end
  end

  def self.down
    change_table :payment_items do |t|
      t.datetime :paid_at
    end
  end
end