mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-02 19:30:48 +08:00
11 lines
202 B
Ruby
11 lines
202 B
Ruby
class CreateProjectUnits < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :project_units do |t|
|
|
t.references :project
|
|
t.integer :unit_type
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|