Sha256: 1b07dc406a686640ef7b7c851dbe7d358a327cff5ebd783dd9b133f7eeccb12c

Contents?: true

Size: 273 Bytes

Versions: 8

Compression:

Stored size: 273 Bytes

Contents

# frozen_string_literal: true

class CreateBooks < ActiveRecord::VERSION::MAJOR >= 5 ? ActiveRecord::Migration[5.0] : ActiveRecord::Migration
  def change
    create_table :books do |t|
      t.references :author
      t.string :title

      t.timestamps
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
erd-0.8.0 test/fake_app/db/migrate/20120428022535_create_books.rb
erd-0.7.0 test/fake_app/db/migrate/20120428022535_create_books.rb
erd-0.6.4 test/fake_app/db/migrate/20120428022535_create_books.rb
erd-0.6.3 test/fake_app/db/migrate/20120428022535_create_books.rb
erd-0.6.2 test/fake_app/db/migrate/20120428022535_create_books.rb
erd-0.6.1 test/fake_app/db/migrate/20120428022535_create_books.rb
erd-0.6.0 test/fake_app/db/migrate/20120428022535_create_books.rb
erd-0.5.0 test/fake_app/db/migrate/20120428022535_create_books.rb