notebook/db/migrate/20200325192300_create_lore_technologies.rb
2020-03-27 20:13:52 -05:00

12 lines
330 B
Ruby

class CreateLoreTechnologies < ActiveRecord::Migration[6.0]
def change
create_table :lore_technologies do |t|
t.references :lore, null: false, foreign_key: true
t.references :technology, null: false, foreign_key: true
t.references :user, null: true, foreign_key: true
t.timestamps
end
end
end