per line comments display

This commit is contained in:
Dmitriy Zaporozhets 2012-01-10 22:08:46 +02:00
parent c66bc99fb7
commit 9da4d06a87
7 changed files with 78 additions and 2 deletions

View file

@ -11,7 +11,19 @@
#
# It's strongly recommended to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20111220190817) do
ActiveRecord::Schema.define(:version => 20120110180749) do
create_table "features", :force => true do |t|
t.string "name"
t.string "branch_name"
t.integer "assignee_id"
t.integer "author_id"
t.integer "project_id"
t.datetime "created_at"
t.datetime "updated_at"
t.string "version"
t.integer "status", :default => 0, :null => false
end
create_table "issues", :force => true do |t|
t.string "title"
@ -56,6 +68,7 @@ ActiveRecord::Schema.define(:version => 20111220190817) do
t.datetime "updated_at"
t.integer "project_id"
t.string "attachment"
t.string "line_code"
end
create_table "projects", :force => true do |t|