Sha256: bc71b0a2900a7f950968cbb55ac764f399cb68569c9a79b71f0ab005ec9a171f

Contents?: true

Size: 306 Bytes

Versions: 10

Compression:

Stored size: 306 Bytes

Contents

class BusinessesModifyFieldsEstimatedValueNotes < ActiveRecord::Migration
  def self.up
    add_column :businesses, :estimated_value, :float
    add_column :businesses, :notes, :string
  end
  
  def self.down
    remove_column :businesses, :estimated_value
    remove_column :businesses, :notes
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
migrant-0.2.3 test/verified_output/migrations/estimated_value_notes.rb
migrant-0.2.2 test/verified_output/migrations/estimated_value_notes.rb
migrant-0.2.1 test/verified_output/migrations/estimated_value_notes.rb
migrant-0.2.0 test/verified_output/migrations/estimated_value_notes.rb
migrant-0.1.5 test/verified_output/migrations/estimated_value_notes.rb
migrant-0.1.4 test/verified_output/migrations/estimated_value_notes.rb
migrant-0.1.3 test/verified_output/migrations/estimated_value_notes.rb
migrant-0.1.2 test/verified_output/migrations/estimated_value_notes.rb
migrant-0.1.1 test/verified_output/migrations/estimated_value_notes.rb
migrant-0.1.0 test/verified_output/migrations/estimated_value_notes.rb