20211210121633_create_users_technologies_join_table.rb 200 B

12345678
  1. class CreateUsersTechnologiesJoinTable < ActiveRecord::Migration[6.1]
  2. def change
  3. create_join_table :users, :technologies do |t|
  4. t.index :user_id
  5. t.index :technology_id
  6. end
  7. end
  8. end