The code powering m.abunchtell.com https://m.abunchtell.com
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

9 rader
214 B

  1. class CreateStatusesTagsJoinTable < ActiveRecord::Migration[5.0]
  2. def change
  3. create_join_table :statuses, :tags do |t|
  4. t.index :tag_id
  5. t.index [:tag_id, :status_id], unique: true
  6. end
  7. end
  8. end