3scale/porta

View on GitHub
db/migrate/20081202102619_add_paid_at_to_reports.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddPaidAtToReports < ActiveRecord::Migration
  def self.up
    change_table :reports do |t|
      t.datetime :paid_at
    end
  end

  def self.down
    change_table :reports do |t|
      t.remove :paid_at
    end
  end
end