lockaz_app/db/migrate/20191203141022_create_s_project_modules.rb
Nicolas Bally f20fe482c6 initial
2020-04-06 10:38:07 +02:00

11 lines
212 B
Ruby

class CreateSProjectModules < ActiveRecord::Migration[6.0]
def change
create_table :s_project_modules do |t|
t.integer :s_project_id
t.integer :s_module_id
t.timestamps
end
end
end