Started GET "/articles/7" for 127.0.0.1 at 2018-04-08 07:59:46 +0200
(0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
Processing by ArticlesController#show as HTML
Parameters: {"id"=>"7"}
Article Load (0.3ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]]
Rendering articles/show.html.erb within layouts/application
Rendered articles/show.html.erb within layouts/application (3.6ms)
Rendered layouts/_messages.html.erb (0.7ms)
Completed 200 OK in 451ms (Views: 400.7ms | ActiveRecord: 1.4ms)
Started GET "/articles/7/edit" for 127.0.0.1 at 2018-04-08 07:59:49 +0200
Processing by ArticlesController#edit as HTML
Parameters: {"id"=>"7"}
Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]]
Rendering articles/edit.html.erb within layouts/application
Rendered articles/_form.html.erb (78.7ms)
Rendered articles/edit.html.erb within layouts/application (90.2ms)
Rendered layouts/_messages.html.erb (0.4ms)
Completed 200 OK in 140ms (Views: 125.7ms | ActiveRecord: 0.5ms)
Started PATCH "/articles/7" for 127.0.0.1 at 2018-04-08 07:59:52 +0200
Processing by ArticlesController#update as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"1DC0gmekR/MbBOtYIYufgRcUPLVaJDHcLb6k7LQg/kr7FJ14/QYar9KEEUXKDbL+UfUAaQnY4BamVSwYeq/fjA==", "article"=>{"title"=>"edit dfdfdfd", "description"=>"updated description"}, "commit"=>"Update Article", "id"=>"7"}
Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]]
(0.2ms) begin transaction
SQL (0.5ms) UPDATE "articles" SET "title" = ?, "updated_at" = ? WHERE "articles"."id" = ? [["title", "edit dfdfdfd"], ["updated_at", "2018-04-08 05:59:52.865947"], ["id", 7]]
(2.2ms) commit transaction
Redirected to http://localhost:3000/articles/7
Completed 302 Found in 9ms (ActiveRecord: 3.0ms)
Started GET "/articles/7" for 127.0.0.1 at 2018-04-08 07:59:52 +0200
Processing by ArticlesController#show as HTML
Parameters: {"id"=>"7"}
Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]]
Rendering articles/show.html.erb within layouts/application
Rendered articles/show.html.erb within layouts/application (0.7ms)
Rendered layouts/_messages.html.erb (0.4ms)
Completed 200 OK in 31ms (Views: 27.2ms | ActiveRecord: 0.2ms)