mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-02 19:30:48 +08:00
12 lines
258 B
Ruby
12 lines
258 B
Ruby
class CreateTeamUnits < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :team_units do |t|
|
|
t.references :organization
|
|
t.references :team
|
|
t.integer :unit_type, comment: "访问单元类型"
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|