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