From f211e47eb20959fdebc5ae0aabf66267ea521ee7 Mon Sep 17 00:00:00 2001 From: haseeb Date: Fri, 9 Feb 2018 23:53:55 +0530 Subject: closed by field added --- db/migrate/20180209165249_add_closed_by_to_issues.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 db/migrate/20180209165249_add_closed_by_to_issues.rb (limited to 'db') diff --git a/db/migrate/20180209165249_add_closed_by_to_issues.rb b/db/migrate/20180209165249_add_closed_by_to_issues.rb new file mode 100644 index 00000000000..043e3ef8688 --- /dev/null +++ b/db/migrate/20180209165249_add_closed_by_to_issues.rb @@ -0,0 +1,13 @@ +# See http://doc.gitlab.com/ce/development/migration_style_guide.html +# for more information on how to write migrations for GitLab. + +class AddClosedByToIssues < ActiveRecord::Migration + include Gitlab::Database::MigrationHelpers + + # Set this constant to true if this migration requires downtime. + DOWNTIME = false + + def change + add_column :issues, :closed_by_id, :integer + end +end -- cgit v1.2.1