Musisz dodać oddzielną tabelę łączenia zawierającą tylko restaurant_id
i user_id
(bez klucza podstawowego), w kolejności alfabetycznej .
Najpierw uruchom migracje, a następnie edytuj wygenerowany plik migracji.
Szyny 3
rails g migration create_restaurants_users_table
Szyny 4 :
rails g migration create_restaurants_users
Szyny 5
rails g migration CreateJoinTableRestaurantUser restaurants users
Z dokumentów :
Istnieje również generator, który utworzy tabele złączeń, jeśli JoinTable jest częścią nazwy:
Twój plik migracji (zwróć uwagę na :id => false
; to jest to, co zapobiega utworzeniu klucza podstawowego):
Szyny 3
class CreateRestaurantsUsers < ActiveRecord::Migration
def self.up
create_table :restaurants_users, :id => false do |t|
t.references :restaurant
t.references :user
end
add_index :restaurants_users, [:restaurant_id, :user_id]
add_index :restaurants_users, :user_id
end
def self.down
drop_table :restaurants_users
end
end
Szyny 4
class CreateRestaurantsUsers < ActiveRecord::Migration
def change
create_table :restaurants_users, id: false do |t|
t.belongs_to :restaurant
t.belongs_to :user
end
end
end
t.belongs_to
automatycznie utworzy niezbędne indeksy. def change
automatycznie wykryje migrację do przodu lub do tyłu, bez potrzeby wykonywania operacji w górę / w dół.
Szyny 5
create_join_table :restaurants, :users do |t|
t.index [:restaurant_id, :user_id]
end
Uwaga: istnieje również opcja niestandardowej nazwy tabeli, którą można przekazać jako parametr do create_join_table o nazwie table_name
. Z dokumentów
Domyślnie nazwa tabeli łączenia pochodzi z sumy pierwszych dwóch argumentów podanych do create_join_table, w porządku alfabetycznym. Aby dostosować nazwę tabeli, podaj opcję: nazwa_tabeli: