Sha256: 94c618f9e2ba8c7a06e27001c7af48d4bec1eb186cbbba8340fa1c59d39fbb91

Contents?: true

Size: 181 Bytes

Versions: 10

Compression:

Stored size: 181 Bytes

Contents

class CreateCats < ActiveRecord::Migration
  def self.up
    create_table :cats do |t|
      t.column :lives, :integer
    end
  end

  def self.down
    drop_table :cats
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

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