Sha256: 3a14a3338be619c4da74224d129e140305c0886839cd246ed9885b90698572ef

Contents?: true

Size: 173 Bytes

Versions: 10

Compression:

Stored size: 173 Bytes

Contents

class CreatePersonTable < ActiveRecord::Migration

  def up
    create_table :people do |t|
      t.string :name
    end
  end

  def down
    drop_table :people
  end

end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
polymorphic_integer_type-2.1.1 spec/support/migrations/3_create_person_table.rb
polymorphic_integer_type-2.1.0 spec/support/migrations/3_create_person_table.rb
polymorphic_integer_type-2.0.0 spec/support/migrations/3_create_person_table.rb
polymorphic_integer_type-1.0.6 spec/support/migrations/3_create_person_table.rb
polymorphic_integer_type-1.0.5 spec/support/migrations/3_create_person_table.rb
polymorphic_integer_type-1.0.4 spec/support/migrations/3_create_person_table.rb
polymorphic_integer_type-1.0.3 spec/support/migrations/3_create_person_table.rb
polymorphic_integer_type-1.0.2 spec/support/migrations/3_create_person_table.rb
polymorphic_integer_type-1.0.1 spec/support/migrations/3_create_person_table.rb
polymorphic_integer_type-1.0.0 spec/support/migrations/3_create_person_table.rb