Sha256: f71c853852caf0e5824ae75bd8758478058a4ab2eff4717c61bb91545b06ff9d

Contents?: true

Size: 413 Bytes

Versions: 9

Compression:

Stored size: 413 Bytes

Contents

class CreateExperimentSpaceShipPerformances < ActiveRecord::Migration
  def change
    create_table :experiment_space_ship_performances do |t|
      t.references :experiment
      t.references :space_ship
      t.date :performed_at

      t.timestamps
    end

    add_foreign_key(:experiment_space_ship_performances, :experiments)
    add_foreign_key(:experiment_space_ship_performances, :space_ships)
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
dbview_cti-0.2.2 spec/dummy-rails-3/db/migrate/20131022030720_create_experiment_space_ship_performances.rb
dbview_cti-0.2.1 spec/dummy-rails-3/db/migrate/20131022030720_create_experiment_space_ship_performances.rb
dbview_cti-0.2.0 spec/dummy-rails-3/db/migrate/20131022030720_create_experiment_space_ship_performances.rb
dbview_cti-0.1.5 spec/dummy-rails-3/db/migrate/20131022030720_create_experiment_space_ship_performances.rb
dbview_cti-0.1.4 spec/dummy-rails-3/db/migrate/20131022030720_create_experiment_space_ship_performances.rb
dbview_cti-0.1.3 spec/dummy-rails-3/db/migrate/20131022030720_create_experiment_space_ship_performances.rb
dbview_cti-0.1.2 spec/dummy-rails-3/db/migrate/20131022030720_create_experiment_space_ship_performances.rb
dbview_cti-0.1.1 spec/dummy-rails-3/db/migrate/20131022030720_create_experiment_space_ship_performances.rb
dbview_cti-0.1.0 spec/dummy-rails-3/db/migrate/20131022030720_create_experiment_space_ship_performances.rb