1. 18 7月, 2012 1 次提交
    • A
      Add join table migration generator · 211d88b7
      Aleksey Magusev 提交于
      For instance, running
      
          rails g migration CreateMediaJoinTable artists musics:uniq
      
      will create a migration with
      
          create_join_table :artists, :musics do |t|
            # t.index [:artist_id, :music_id]
            t.index [:music_id, :artist_id], unique: true
          end
      211d88b7
  2. 10 7月, 2012 1 次提交
  3. 09 7月, 2012 14 次提交
  4. 08 7月, 2012 6 次提交
  5. 07 7月, 2012 18 次提交