Sha256: 2b39f729d8b41bd237f21f4c021f7488c1b018f3437cd6b573e7c42e87ce9f8c
Contents?: true
Size: 458 Bytes
Versions: 2
Compression:
Stored size: 458 Bytes
Contents
class CreateModels < ActiveRecord::Migration[5.0] def change create_table :pictures do |t| t.string :name t.references :imageable, polymorphic: true, index: true t.timestamps end create_table :employees do |t| t.string :first_name t.string :last_name t.timestamps end create_table :products do |t| t.belongs_to :employee, index: true t.string :name t.timestamps end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
log_changes-1.0.0 | spec/dummy/db/migrate/20161228194303_create_models.rb |
log_changes-0.1.0 | spec/dummy/db/migrate/20161228194303_create_models.rb |