Sha256: 33d8fdc4bddef64668dd90fddcb64b5a5e66d0e938e7c73e09d03392c5201c9b

Contents?: true

Size: 198 Bytes

Versions: 5

Compression:

Stored size: 198 Bytes

Contents

class RemovePaidAtFromWorkUnitsTable < ActiveRecord::Migration
  def self.up
    remove_column :work_units, :paid_at
  end

  def self.down
    add_column :work_units, :paid_at, :datetime
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
xrono-1.0.4 db/migrate/20101020215457_remove_paid_at_from_work_units_table.rb
xrono-1.0.3 db/migrate/20101020215457_remove_paid_at_from_work_units_table.rb
xrono-1.0.2 db/migrate/20101020215457_remove_paid_at_from_work_units_table.rb
xrono-1.0.1 db/migrate/20101020215457_remove_paid_at_from_work_units_table.rb
xrono-1.0.0 db/migrate/20101020215457_remove_paid_at_from_work_units_table.rb