mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 03:40:49 +08:00
11 lines
223 B
Ruby
11 lines
223 B
Ruby
class CreateTeamUsers < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :team_users do |t|
|
|
t.references :organization
|
|
t.references :team
|
|
t.references :user
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|