Sha256: 426003625d2043f8aeaa185030ddbb69b642fd34ca9b56c990a3b4dc4c5cccd9

Contents?: true

Size: 498 Bytes

Versions: 214

Compression:

Stored size: 498 Bytes

Contents

class GiveMeBigNumbers < ActiveRecord::Migration
  def self.up
    create_table :big_numbers do |table|
      table.column :bank_balance, :decimal, :precision => 10, :scale => 2
      table.column :big_bank_balance, :decimal, :precision => 15, :scale => 2
      table.column :world_population, :decimal, :precision => 10
      table.column :my_house_population, :decimal, :precision => 2
      table.column :value_of_e, :decimal
    end
  end

  def self.down
    drop_table :big_numbers
  end
end

Version data entries

214 entries across 211 versions & 29 rubygems

Version Path
activerecord-1.15.3 test/fixtures/migrations_with_decimal/1_give_me_big_numbers.rb
activerecord-1.15.4 test/fixtures/migrations_with_decimal/1_give_me_big_numbers.rb
activerecord-1.15.2 test/fixtures/migrations_with_decimal/1_give_me_big_numbers.rb
activerecord-1.15.0 test/fixtures/migrations_with_decimal/1_give_me_big_numbers.rb
activerecord-1.15.1 test/fixtures/migrations_with_decimal/1_give_me_big_numbers.rb
activerecord-1.15.5 test/fixtures/migrations_with_decimal/1_give_me_big_numbers.rb
activerecord-1.15.6 test/fixtures/migrations_with_decimal/1_give_me_big_numbers.rb
activerecord-2.0.0 test/fixtures/migrations_with_decimal/1_give_me_big_numbers.rb
activerecord-2.0.2 test/fixtures/migrations_with_decimal/1_give_me_big_numbers.rb
activerecord-2.0.5 test/fixtures/migrations_with_decimal/1_give_me_big_numbers.rb
activerecord-2.0.1 test/fixtures/migrations_with_decimal/1_give_me_big_numbers.rb
activerecord-2.0.4 test/fixtures/migrations_with_decimal/1_give_me_big_numbers.rb
activerecord-2.2.2 test/migrations/decimal/1_give_me_big_numbers.rb
activerecord-2.3.2 test/migrations/decimal/1_give_me_big_numbers.rb
activerecord-2.1.0 test/migrations/decimal/1_give_me_big_numbers.rb
activerecord-2.1.1 test/migrations/decimal/1_give_me_big_numbers.rb
activerecord-2.1.2 test/migrations/decimal/1_give_me_big_numbers.rb
activerecord_authorails-1.0.0 test/fixtures/migrations_with_decimal/1_give_me_big_numbers.rb
antfarm-0.3.0 rails/vendor/rails/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb
antfarm-0.4.0 rails/vendor/rails/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb