From 6cbb22acaf3a5c3e4174dc12f53ebef5708e713a Mon Sep 17 00:00:00 2001 From: Jasder <2053003901@@qq.com> Date: Sun, 27 Sep 2020 10:56:08 +0800 Subject: [PATCH] ADD open_devops_count column fro projects tables --- .../20200925090122_add_open_devops_count_to_projects.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20200925090122_add_open_devops_count_to_projects.rb diff --git a/db/migrate/20200925090122_add_open_devops_count_to_projects.rb b/db/migrate/20200925090122_add_open_devops_count_to_projects.rb new file mode 100644 index 000000000..9150b2679 --- /dev/null +++ b/db/migrate/20200925090122_add_open_devops_count_to_projects.rb @@ -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