This commit is contained in:
呱呱呱
2023-11-08 10:54:09 +08:00
parent 452890f825
commit 43be8d1724
5 changed files with 19 additions and 5 deletions

View File

@@ -0,0 +1,5 @@
class AddChildCountToIssues < ActiveRecord::Migration[5.2]
def change
add_column :issues, :child_count, :integer, default:0
end
end