Preparing 591 for merge. Restyled issues & merge requests. Fixed issue edit.

This commit is contained in:
Dmitriy Zaporozhets 2012-03-25 19:05:24 +03:00
parent b1d89f732c
commit 8652cd8989
9 changed files with 79 additions and 89 deletions

View file

@ -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"