Sha256: d35864abb5e5c11b3922afa90cb91de1c5eb6d824a5dc34c8c2255847451166a
Contents?: true
Size: 374 Bytes
Versions: 1
Compression:
Stored size: 374 Bytes
Contents
require_relative './migration_helper' class CreateHabtmJoinTable < MigrationHelper.migration_base_class def change create_table :astronauts_space_ships, id: false do |t| t.integer :astronaut_id t.integer :space_ship_id end add_foreign_key(:astronauts_space_ships, :astronauts) add_foreign_key(:astronauts_space_ships, :space_ships) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dbview_cti-0.2.3 | spec/dummy-rails-3/db/migrate/20131022020655_create_habtm_join_table.rb |