ADD open_devops_count column fro projects tables

This commit is contained in:
Jasder
2020-09-27 10:56:08 +08:00
parent f116e3347d
commit 6cbb22acaf

View File

@@ -0,0 +1,5 @@
class AddOpenDevopsCountToProjects < ActiveRecord::Migration[5.2]
def change
add_column :projects, :open_devops_count, :integer, default: 0, comment: '针对同一台ci服务器激活devops流程的次数'
end
end