Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgitlabhq <m@gitlabhq.com>2011-11-24 17:08:20 +0400
committergitlabhq <m@gitlabhq.com>2011-11-24 17:08:20 +0400
commitee2d3de1a634611a1c660516c955be0d3000904b (patch)
treef4bb868df7cfc4400a50a4f6056a188503f718f5 /db/migrate/20111124115339_add_extra_field_to_issue.rb
parentb4c40c212c377ee04bb16065388c24b4bd3ec656 (diff)
ability to attach branch to issue
Diffstat (limited to 'db/migrate/20111124115339_add_extra_field_to_issue.rb')
-rw-r--r--db/migrate/20111124115339_add_extra_field_to_issue.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20111124115339_add_extra_field_to_issue.rb b/db/migrate/20111124115339_add_extra_field_to_issue.rb
new file mode 100644
index 00000000000..4946c6fb0bc
--- /dev/null
+++ b/db/migrate/20111124115339_add_extra_field_to_issue.rb
@@ -0,0 +1,5 @@
+class AddExtraFieldToIssue < ActiveRecord::Migration
+ def change
+ add_column :issues, :branch_name, :string, :null => true
+ end
+end