fixed commit commenting

This commit is contained in:
Dmitriy Zaporozhets 2012-01-21 14:54:32 +02:00
parent 3d7b35a37d
commit f4e3ec29c4
7 changed files with 84 additions and 7 deletions

View file

@ -11,7 +11,19 @@
#
# It's strongly recommended to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20120119203233) do
ActiveRecord::Schema.define(:version => 20120121122616) 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"
@ -54,7 +66,7 @@ ActiveRecord::Schema.define(:version => 20120119203233) do
create_table "notes", :force => true do |t|
t.text "note"
t.integer "noteable_id", :limit => 255
t.string "noteable_id"
t.string "noteable_type"
t.integer "author_id"
t.datetime "created_at"