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:
authorSteven Verbeek <sverbeek@modernmedia.ca>2012-03-17 08:17:37 +0400
committerSteven Verbeek <sverbeek@modernmedia.ca>2012-03-17 08:17:37 +0400
commit7e2f489017ddf643556fc453efaa1f7906861a30 (patch)
treedaf802c1ae3df54867e29441fbbca60c916a6ee0 /db
parent94fd9a6e4713d26bcf8bbfa91b53b84810567d8c (diff)
db migrate file
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20120317095543_add_description_to_issues.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20120317095543_add_description_to_issues.rb b/db/migrate/20120317095543_add_description_to_issues.rb
new file mode 100644
index 00000000000..e47e3f8e898
--- /dev/null
+++ b/db/migrate/20120317095543_add_description_to_issues.rb
@@ -0,0 +1,5 @@
+class AddDescriptionToIssues < ActiveRecord::Migration
+ def change
+ add_column :issues, :description, :text
+ end
+end