summaryrefslogtreecommitdiff
path: root/db/migrate/20180209165249_add_closed_by_to_issues.rb
diff options
context:
space:
mode:
authorhaseeb <haseebeqx@yahoo.com>2018-02-09 23:53:55 +0530
committerhaseeb <haseebeqx@yahoo.com>2018-02-28 19:25:24 +0530
commitf211e47eb20959fdebc5ae0aabf66267ea521ee7 (patch)
treec2c7a6c69ae5f52aa404764e139fd27d943e085c /db/migrate/20180209165249_add_closed_by_to_issues.rb
parent56af0631c6c6d838301ac068f2e79b8f4de9fda7 (diff)
downloadgitlab-ce-f211e47eb20959fdebc5ae0aabf66267ea521ee7.tar.gz
closed by field added
Diffstat (limited to 'db/migrate/20180209165249_add_closed_by_to_issues.rb')
-rw-r--r--db/migrate/20180209165249_add_closed_by_to_issues.rb13
1 files changed, 13 insertions, 0 deletions
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