The code powering m.abunchtell.com https://m.abunchtell.com
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

9 строки
230 B

  1. class CreateAccountsTagsJoinTable < ActiveRecord::Migration[5.2]
  2. def change
  3. create_join_table :accounts, :tags do |t|
  4. t.index [:account_id, :tag_id]
  5. t.index [:tag_id, :account_id], unique: true
  6. end
  7. end
  8. end