add: project menu list

This commit is contained in:
2021-03-17 11:52:36 +08:00
parent f17e436d62
commit a14459da50
14 changed files with 373 additions and 36 deletions

View File

@@ -0,0 +1,10 @@
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