db:migrate required after db:app:setup
Created by: 0xBF
db/schema.rb setup database version 20121002151033, but last database version is 20121009205010.
This lead to "db:app:setup" finished with error and user must run "db:migrate" manually.
diff --git a/db/schema.rb b/db/schema.rb index ec4729c..ba1546b 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 20121002151033) do +ActiveRecord::Schema.define(:version => 20121009205010) do create_table "events", :force => true do |t| t.string "target_type" @@ -214,4 +214,11 @@ ActiveRecord::Schema.define(:version => 20121002151033) do t.integer "user_id" end + begin + execute <