mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
12 lines
344 B
Ruby
12 lines
344 B
Ruby
class CreateTechnologyGroups < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :technology_groups do |t|
|
|
t.references :user, index: true, foreign_key: true
|
|
t.references :technology, index: true, foreign_key: true
|
|
t.references :group, index: true, foreign_key: true
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|