Files
fetsite/db/migrate/20130123000000_create_modulgruppe_modul_join_table.rb
Thomas Blazek cc002d4291 Init
2013-07-22 15:49:19 +02:00

8 lines
205 B
Ruby
Executable File

class CreateModulgruppeModulJoinTable < ActiveRecord::Migration
def change
create_table :modulgruppen_moduls, :id=>false do |t|
t.integer :modul_id
t.integer :modulgruppe_id
end
end
end