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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-03-25 20:05:24 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-03-25 20:05:24 +0400
commit8652cd89897e324b9cb0974a61ff045e68d5c97e (patch)
tree0264e9bd9bf230dd80910732b98b57ee7066ff6c /db
parentb1d89f732c356e1b9792558556f65d1993db7f3a (diff)
Preparing 591 for merge. Restyled issues & merge requests. Fixed issue edit.
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index d2c54b50f67..c1326ca8d11 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -27,7 +27,6 @@ ActiveRecord::Schema.define(:version => 20120323221339) do
create_table "issues", :force => true do |t|
t.string "title"
- t.text "description"
t.integer "assignee_id"
t.integer "author_id"
t.integer "project_id"
@@ -37,6 +36,7 @@ ActiveRecord::Schema.define(:version => 20120323221339) do
t.integer "position", :default => 0
t.boolean "critical", :default => false, :null => false
t.string "branch_name"
+ t.text "description"
end
add_index "issues", ["project_id"], :name => "index_issues_on_project_id"