Sha256: 783c3bf5c29bca7d452a4c3271623c443eb5d214d277ed1846513bdc1dbdb17c

Contents?: true

Size: 230 Bytes

Versions: 10

Compression:

Stored size: 230 Bytes

Contents

class CreateBottomDogs < ActiveRecord::Migration
  def self.up
    create_table :bottom_dogs do |t|
      t.column :name, :string
      t.column :sick, :boolean
    end
  end

  def self.down
    drop_table :bottom_dogs
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
birdbath-1.3.5 test/db/migrate_good/002_create_bottom_dogs.rb
birdbath-1.3.4 test/db/migrate_good/002_create_bottom_dogs.rb
migration_test_helper-1.3.3 ./test/db/migrate_good/002_create_bottom_dogs.rb
migration_test_helper-1.1.0 test/db/migrate_good/002_create_bottom_dogs.rb
migration_test_helper-1.2.0 test/db/migrate_good/002_create_bottom_dogs.rb
migration_test_helper-1.3.2 test/db/migrate_good/002_create_bottom_dogs.rb
migration_test_helper-1.3.1 test/db/migrate_good/002_create_bottom_dogs.rb
migration_test_helper-1.2.1 test/db/migrate_good/002_create_bottom_dogs.rb
migration_test_helper-0.1.0 test/db/migrate_good/002_create_bottom_dogs.rb
migration_test_helper-1.0.0 test/db/migrate_good/002_create_bottom_dogs.rb