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
path: root/db
diff options
context:
space:
mode:
authorAndrew8xx8 <avk@8xx8.ru>2013-02-11 18:21:04 +0400
committerAndrew8xx8 <avk@8xx8.ru>2013-02-28 16:11:13 +0400
commitf13600845d2ccec816337234eb5f1dccd40777f7 (patch)
treee95ab27c1e881b331f4bed9120b5b1fde3485a9c /db
parent0afdf39dbcc50eb5889be08e5b1aaefe162e456c (diff)
Migration added
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20130211085435_add_issues_tracker_id_to_project.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20130211085435_add_issues_tracker_id_to_project.rb b/db/migrate/20130211085435_add_issues_tracker_id_to_project.rb
new file mode 100644
index 00000000000..71763d18aee
--- /dev/null
+++ b/db/migrate/20130211085435_add_issues_tracker_id_to_project.rb
@@ -0,0 +1,5 @@
+class AddIssuesTrackerIdToProject < ActiveRecord::Migration
+ def change
+ add_column :projects, :issues_tracker_id, :string
+ end
+end