Merge branch 'develop' into standalone_develop

This commit is contained in:
2022-11-15 14:42:07 +08:00
7 changed files with 39 additions and 11 deletions

View File

@@ -0,0 +1,5 @@
class AddPrivateProjectsCountToProjectCategory < ActiveRecord::Migration[5.2]
def change
add_column :project_categories, :private_projects_count, :integer, default: 0
end
end