mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
10 lines
207 B
Ruby
10 lines
207 B
Ruby
class CreateSubgroupships < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :subgroupships do |t|
|
|
t.integer :user_id
|
|
t.integer :group_id
|
|
t.integer :subgroup_id
|
|
end
|
|
end
|
|
end
|